xref: /onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/ifconfig/defs.h (revision 0:68f95e015346)
1*0Sstevel@tonic-gate /*
2*0Sstevel@tonic-gate  * Copyright 2003 Sun Microsystems, Inc.  All rights reserved.
3*0Sstevel@tonic-gate  * Use is subject to license terms.
4*0Sstevel@tonic-gate  */
5*0Sstevel@tonic-gate /*
6*0Sstevel@tonic-gate  * Copyright (c) 1983 Regents of the University of California.
7*0Sstevel@tonic-gate  * All rights reserved.  The Berkeley software License Agreement
8*0Sstevel@tonic-gate  * specifies the terms and conditions for redistribution.
9*0Sstevel@tonic-gate  */
10*0Sstevel@tonic-gate 
11*0Sstevel@tonic-gate #ifndef _DEFS_H
12*0Sstevel@tonic-gate #define	_DEFS_H
13*0Sstevel@tonic-gate 
14*0Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
15*0Sstevel@tonic-gate 
16*0Sstevel@tonic-gate #ifdef __cplusplus
17*0Sstevel@tonic-gate extern "C" {
18*0Sstevel@tonic-gate #endif
19*0Sstevel@tonic-gate 
20*0Sstevel@tonic-gate #include <unistd.h>
21*0Sstevel@tonic-gate #include <stdlib.h>
22*0Sstevel@tonic-gate #include <stdio.h>
23*0Sstevel@tonic-gate #include <fcntl.h>
24*0Sstevel@tonic-gate #include <ctype.h>
25*0Sstevel@tonic-gate #include <string.h>
26*0Sstevel@tonic-gate #include <syslog.h>
27*0Sstevel@tonic-gate #include <libdevinfo.h>
28*0Sstevel@tonic-gate #include <zone.h>
29*0Sstevel@tonic-gate 
30*0Sstevel@tonic-gate #include <sys/types.h>
31*0Sstevel@tonic-gate #include <sys/socket.h>
32*0Sstevel@tonic-gate #include <sys/ioctl.h>
33*0Sstevel@tonic-gate #include <sys/stat.h>
34*0Sstevel@tonic-gate #include <sys/file.h>
35*0Sstevel@tonic-gate #include <sys/sockio.h>
36*0Sstevel@tonic-gate #include <stropts.h>
37*0Sstevel@tonic-gate 
38*0Sstevel@tonic-gate #include <netinet/in.h>
39*0Sstevel@tonic-gate #include <netinet/ip6.h>
40*0Sstevel@tonic-gate #include <netinet/icmp6.h>
41*0Sstevel@tonic-gate #include <netinet/tcp.h>
42*0Sstevel@tonic-gate #include <net/if.h>
43*0Sstevel@tonic-gate #include <net/pfkeyv2.h>
44*0Sstevel@tonic-gate #include <netinet/if_ether.h>
45*0Sstevel@tonic-gate #include <net/if_types.h>
46*0Sstevel@tonic-gate #include <net/if_dl.h>
47*0Sstevel@tonic-gate 
48*0Sstevel@tonic-gate #include <netinet/dhcp.h>
49*0Sstevel@tonic-gate #include <dhcpagent_util.h>
50*0Sstevel@tonic-gate #include <dhcpagent_ipc.h>
51*0Sstevel@tonic-gate 
52*0Sstevel@tonic-gate #include <netdb.h>
53*0Sstevel@tonic-gate #include <arpa/inet.h>
54*0Sstevel@tonic-gate #include <assert.h>
55*0Sstevel@tonic-gate 
56*0Sstevel@tonic-gate #include <ipmp_mpathd.h>
57*0Sstevel@tonic-gate #include <inetcfg.h>
58*0Sstevel@tonic-gate 
59*0Sstevel@tonic-gate #ifdef __cplusplus
60*0Sstevel@tonic-gate }
61*0Sstevel@tonic-gate #endif
62*0Sstevel@tonic-gate 
63*0Sstevel@tonic-gate #endif /* _DEFS_H */
64