1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31 #ifndef _SVR4_SOCKIO_H_
32 #define _SVR4_SOCKIO_H_
33
34 #define SVR4_IFF_UP 0x0001
35 #define SVR4_IFF_BROADCAST 0x0002
36 #define SVR4_IFF_DEBUG 0x0004
37 #define SVR4_IFF_LOOPBACK 0x0008
38 #define SVR4_IFF_POINTOPOINT 0x0010
39 #define SVR4_IFF_NOTRAILERS 0x0020
40 #define SVR4_IFF_RUNNING 0x0040
41 #define SVR4_IFF_NOARP 0x0080
42 #define SVR4_IFF_PROMISC 0x0100
43 #define SVR4_IFF_ALLMULTI 0x0200
44 #define SVR4_IFF_INTELLIGENT 0x0400
45 #define SVR4_IFF_MULTICAST 0x0800
46 #define SVR4_IFF_MULTI_BCAST 0x1000
47 #define SVR4_IFF_UNNUMBERED 0x2000
48 #define SVR4_IFF_PRIVATE 0x8000
49
50 struct svr4_ifreq {
51 #define SVR4_IFNAMSIZ 16
52 char svr4_ifr_name[SVR4_IFNAMSIZ];
53 union {
54 struct osockaddr ifru_addr;
55 struct osockaddr ifru_dstaddr;
56 struct osockaddr ifru_broadaddr;
57 short ifru_flags;
58 int ifru_metric;
59 char ifru_data;
60 char ifru_enaddr[6];
61 int if_muxid[2];
62
63 } ifr_ifru;
64
65 #define svr4_ifr_addr ifr_ifru.ifru_addr
66 #define svr4_ifr_dstaddr ifr_ifru.ifru_dstaddr
67 #define svr4_ifr_broadaddr ifr_ifru.ifru_broadaddr
68 #define svr4_ifr_flags ifr_ifru.ifru_flags
69 #define svr4_ifr_metric ifr_ifru.ifru_metric
70 #define svr4_ifr_data ifr_ifru.ifru_data
71 #define svr4_ifr_enaddr ifr_ifru.ifru_enaddr
72 #define svr4_ifr_muxid ifr_ifru.ifru_muxid
73
74 };
75
76 struct svr4_ifconf {
77 int svr4_ifc_len;
78 union {
79 caddr_t ifcu_buf;
80 struct svr4_ifreq *ifcu_req;
81 } ifc_ifcu;
82
83 #define svr4_ifc_buf ifc_ifcu.ifcu_buf
84 #define svr4_ifc_req ifc_ifcu.ifcu_req
85 };
86
87 #define SVR4_SIOC ('i' << 8)
88
89 #define SVR4_SIOCGIFFLAGS SVR4_IOWR('i', 17, struct svr4_ifreq)
90 #define SVR4_SIOCGIFCONF SVR4_IOWR('i', 20, struct svr4_ifconf)
91 #define SVR4_SIOCGIFNUM SVR4_IOR('i', 87, int)
92
93 #endif