xref: /onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/ifconfig/defs.h (revision 10616:3be00c4a6835)
10Sstevel@tonic-gate /*
2*8485SPeter.Memishian@Sun.COM  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
30Sstevel@tonic-gate  * Use is subject to license terms.
40Sstevel@tonic-gate  */
50Sstevel@tonic-gate /*
60Sstevel@tonic-gate  * Copyright (c) 1983 Regents of the University of California.
70Sstevel@tonic-gate  * All rights reserved.  The Berkeley software License Agreement
80Sstevel@tonic-gate  * specifies the terms and conditions for redistribution.
90Sstevel@tonic-gate  */
100Sstevel@tonic-gate 
110Sstevel@tonic-gate #ifndef _DEFS_H
120Sstevel@tonic-gate #define	_DEFS_H
130Sstevel@tonic-gate 
140Sstevel@tonic-gate #ifdef __cplusplus
150Sstevel@tonic-gate extern "C" {
160Sstevel@tonic-gate #endif
170Sstevel@tonic-gate 
185895Syz147064 #include <errno.h>
19*8485SPeter.Memishian@Sun.COM #include <limits.h>
200Sstevel@tonic-gate #include <unistd.h>
210Sstevel@tonic-gate #include <stdlib.h>
220Sstevel@tonic-gate #include <stdio.h>
230Sstevel@tonic-gate #include <fcntl.h>
240Sstevel@tonic-gate #include <ctype.h>
250Sstevel@tonic-gate #include <string.h>
260Sstevel@tonic-gate #include <syslog.h>
270Sstevel@tonic-gate #include <zone.h>
280Sstevel@tonic-gate 
290Sstevel@tonic-gate #include <sys/types.h>
300Sstevel@tonic-gate #include <sys/socket.h>
310Sstevel@tonic-gate #include <sys/ioctl.h>
320Sstevel@tonic-gate #include <sys/stat.h>
330Sstevel@tonic-gate #include <sys/file.h>
340Sstevel@tonic-gate #include <sys/sockio.h>
350Sstevel@tonic-gate #include <stropts.h>
360Sstevel@tonic-gate 
370Sstevel@tonic-gate #include <netinet/in.h>
380Sstevel@tonic-gate #include <netinet/ip6.h>
390Sstevel@tonic-gate #include <netinet/icmp6.h>
400Sstevel@tonic-gate #include <netinet/tcp.h>
410Sstevel@tonic-gate #include <net/if.h>
420Sstevel@tonic-gate #include <net/pfkeyv2.h>
430Sstevel@tonic-gate #include <netinet/if_ether.h>
440Sstevel@tonic-gate #include <net/if_types.h>
450Sstevel@tonic-gate #include <net/if_dl.h>
460Sstevel@tonic-gate 
470Sstevel@tonic-gate #include <netinet/dhcp.h>
480Sstevel@tonic-gate #include <dhcpagent_util.h>
490Sstevel@tonic-gate #include <dhcpagent_ipc.h>
500Sstevel@tonic-gate 
510Sstevel@tonic-gate #include <netdb.h>
520Sstevel@tonic-gate #include <arpa/inet.h>
530Sstevel@tonic-gate #include <assert.h>
540Sstevel@tonic-gate 
550Sstevel@tonic-gate #include <ipmp_mpathd.h>
56*8485SPeter.Memishian@Sun.COM #include <ipmp_admin.h>
57*8485SPeter.Memishian@Sun.COM #include <libinetutil.h>
58*8485SPeter.Memishian@Sun.COM #include <alloca.h>
590Sstevel@tonic-gate 
600Sstevel@tonic-gate #ifdef __cplusplus
610Sstevel@tonic-gate }
620Sstevel@tonic-gate #endif
630Sstevel@tonic-gate 
640Sstevel@tonic-gate #endif /* _DEFS_H */
65