1/*-
2 * Copyright (c) 1998 Mark Newton
3 * Copyright (c) 1995 Christos Zoulas
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 *    derived from this software without specific prior written permission
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * $FreeBSD$
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
50struct 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
76struct 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 /* !_SVR4_SOCKIO_H_ */
94