xref: /illumos-gate/usr/src/boot/include/arpa/inet.h (revision 199767f8)
1*199767f8SToomas Soome /*
2*199767f8SToomas Soome  * ++Copyright++ 1983, 1993
3*199767f8SToomas Soome  * -
4*199767f8SToomas Soome  * Copyright (c) 1983, 1993
5*199767f8SToomas Soome  *    The Regents of the University of California.  All rights reserved.
6*199767f8SToomas Soome  *
7*199767f8SToomas Soome  * Redistribution and use in source and binary forms, with or without
8*199767f8SToomas Soome  * modification, are permitted provided that the following conditions
9*199767f8SToomas Soome  * are met:
10*199767f8SToomas Soome  * 1. Redistributions of source code must retain the above copyright
11*199767f8SToomas Soome  *    notice, this list of conditions and the following disclaimer.
12*199767f8SToomas Soome  * 2. Redistributions in binary form must reproduce the above copyright
13*199767f8SToomas Soome  *    notice, this list of conditions and the following disclaimer in the
14*199767f8SToomas Soome  *    documentation and/or other materials provided with the distribution.
15*199767f8SToomas Soome  * 3. Neither the name of the University nor the names of its contributors
16*199767f8SToomas Soome  *    may be used to endorse or promote products derived from this software
17*199767f8SToomas Soome  *    without specific prior written permission.
18*199767f8SToomas Soome  *
19*199767f8SToomas Soome  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20*199767f8SToomas Soome  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21*199767f8SToomas Soome  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22*199767f8SToomas Soome  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23*199767f8SToomas Soome  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24*199767f8SToomas Soome  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25*199767f8SToomas Soome  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26*199767f8SToomas Soome  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27*199767f8SToomas Soome  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28*199767f8SToomas Soome  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29*199767f8SToomas Soome  * SUCH DAMAGE.
30*199767f8SToomas Soome  * -
31*199767f8SToomas Soome  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
32*199767f8SToomas Soome  *
33*199767f8SToomas Soome  * Permission to use, copy, modify, and distribute this software for any
34*199767f8SToomas Soome  * purpose with or without fee is hereby granted, provided that the above
35*199767f8SToomas Soome  * copyright notice and this permission notice appear in all copies, and that
36*199767f8SToomas Soome  * the name of Digital Equipment Corporation not be used in advertising or
37*199767f8SToomas Soome  * publicity pertaining to distribution of the document or software without
38*199767f8SToomas Soome  * specific, written prior permission.
39*199767f8SToomas Soome  *
40*199767f8SToomas Soome  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
41*199767f8SToomas Soome  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
42*199767f8SToomas Soome  * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
43*199767f8SToomas Soome  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
44*199767f8SToomas Soome  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
45*199767f8SToomas Soome  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
46*199767f8SToomas Soome  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
47*199767f8SToomas Soome  * SOFTWARE.
48*199767f8SToomas Soome  * -
49*199767f8SToomas Soome  * --Copyright--
50*199767f8SToomas Soome  */
51*199767f8SToomas Soome 
52*199767f8SToomas Soome /*%
53*199767f8SToomas Soome  *	@(#)inet.h	8.1 (Berkeley) 6/2/93
54*199767f8SToomas Soome  *	$Id: inet.h,v 1.3 2005/04/27 04:56:16 sra Exp $
55*199767f8SToomas Soome  * $FreeBSD$
56*199767f8SToomas Soome  */
57*199767f8SToomas Soome 
58*199767f8SToomas Soome #ifndef _ARPA_INET_H_
59*199767f8SToomas Soome #define	_ARPA_INET_H_
60*199767f8SToomas Soome 
61*199767f8SToomas Soome /* External definitions for functions in inet(3). */
62*199767f8SToomas Soome 
63*199767f8SToomas Soome #include <sys/cdefs.h>
64*199767f8SToomas Soome #include <sys/_types.h>
65*199767f8SToomas Soome 
66*199767f8SToomas Soome /* Required for byteorder(3) functions. */
67*199767f8SToomas Soome #include <machine/endian.h>
68*199767f8SToomas Soome 
69*199767f8SToomas Soome #define	INET_ADDRSTRLEN		16
70*199767f8SToomas Soome #define	INET6_ADDRSTRLEN	46
71*199767f8SToomas Soome 
72*199767f8SToomas Soome #ifndef _UINT16_T_DECLARED
73*199767f8SToomas Soome typedef	__uint16_t	uint16_t;
74*199767f8SToomas Soome #define	_UINT16_T_DECLARED
75*199767f8SToomas Soome #endif
76*199767f8SToomas Soome 
77*199767f8SToomas Soome #ifndef _UINT32_T_DECLARED
78*199767f8SToomas Soome typedef	__uint32_t	uint32_t;
79*199767f8SToomas Soome #define	_UINT32_T_DECLARED
80*199767f8SToomas Soome #endif
81*199767f8SToomas Soome 
82*199767f8SToomas Soome #ifndef _IN_ADDR_T_DECLARED
83*199767f8SToomas Soome typedef	uint32_t	in_addr_t;
84*199767f8SToomas Soome #define	_IN_ADDR_T_DECLARED
85*199767f8SToomas Soome #endif
86*199767f8SToomas Soome 
87*199767f8SToomas Soome #ifndef _IN_PORT_T_DECLARED
88*199767f8SToomas Soome typedef	uint16_t	in_port_t;
89*199767f8SToomas Soome #define	_IN_PORT_T_DECLARED
90*199767f8SToomas Soome #endif
91*199767f8SToomas Soome 
92*199767f8SToomas Soome #if __BSD_VISIBLE
93*199767f8SToomas Soome #ifndef _SIZE_T_DECLARED
94*199767f8SToomas Soome typedef	__size_t	size_t;
95*199767f8SToomas Soome #define	_SIZE_T_DECLARED
96*199767f8SToomas Soome #endif
97*199767f8SToomas Soome #endif
98*199767f8SToomas Soome 
99*199767f8SToomas Soome /*
100*199767f8SToomas Soome  * XXX socklen_t is used by a POSIX.1-2001 interface, but not required by
101*199767f8SToomas Soome  * POSIX.1-2001.
102*199767f8SToomas Soome  */
103*199767f8SToomas Soome #ifndef _SOCKLEN_T_DECLARED
104*199767f8SToomas Soome typedef	__socklen_t	socklen_t;
105*199767f8SToomas Soome #define	_SOCKLEN_T_DECLARED
106*199767f8SToomas Soome #endif
107*199767f8SToomas Soome 
108*199767f8SToomas Soome #ifndef _STRUCT_IN_ADDR_DECLARED
109*199767f8SToomas Soome struct in_addr {
110*199767f8SToomas Soome 	in_addr_t s_addr;
111*199767f8SToomas Soome };
112*199767f8SToomas Soome #define	_STRUCT_IN_ADDR_DECLARED
113*199767f8SToomas Soome #endif
114*199767f8SToomas Soome 
115*199767f8SToomas Soome /* XXX all new diversions!! argh!! */
116*199767f8SToomas Soome #if __BSD_VISIBLE
117*199767f8SToomas Soome #define	inet_addr		__inet_addr
118*199767f8SToomas Soome #define	inet_aton		__inet_aton
119*199767f8SToomas Soome #define	inet_lnaof		__inet_lnaof
120*199767f8SToomas Soome #define	inet_makeaddr		__inet_makeaddr
121*199767f8SToomas Soome #define	inet_neta		__inet_neta
122*199767f8SToomas Soome #define	inet_netof		__inet_netof
123*199767f8SToomas Soome #define	inet_network		__inet_network
124*199767f8SToomas Soome #define	inet_net_ntop		__inet_net_ntop
125*199767f8SToomas Soome #define	inet_net_pton		__inet_net_pton
126*199767f8SToomas Soome #define	inet_cidr_ntop		__inet_cidr_ntop
127*199767f8SToomas Soome #define	inet_cidr_pton		__inet_cidr_pton
128*199767f8SToomas Soome #define	inet_ntoa		__inet_ntoa
129*199767f8SToomas Soome #define	inet_ntoa_r		__inet_ntoa_r
130*199767f8SToomas Soome #define	inet_pton		__inet_pton
131*199767f8SToomas Soome #define	inet_ntop		__inet_ntop
132*199767f8SToomas Soome #define	inet_nsap_addr		__inet_nsap_addr
133*199767f8SToomas Soome #define	inet_nsap_ntoa		__inet_nsap_ntoa
134*199767f8SToomas Soome #endif /* __BSD_VISIBLE */
135*199767f8SToomas Soome 
136*199767f8SToomas Soome __BEGIN_DECLS
137*199767f8SToomas Soome #ifndef _BYTEORDER_PROTOTYPED
138*199767f8SToomas Soome #define	_BYTEORDER_PROTOTYPED
139*199767f8SToomas Soome uint32_t	 htonl(uint32_t);
140*199767f8SToomas Soome uint16_t	 htons(uint16_t);
141*199767f8SToomas Soome uint32_t	 ntohl(uint32_t);
142*199767f8SToomas Soome uint16_t	 ntohs(uint16_t);
143*199767f8SToomas Soome #endif
144*199767f8SToomas Soome 
145*199767f8SToomas Soome in_addr_t	 inet_addr(const char *);
146*199767f8SToomas Soome /*const*/ char	*inet_ntoa(struct in_addr);
147*199767f8SToomas Soome const char	*inet_ntop(int, const void * __restrict, char * __restrict,
148*199767f8SToomas Soome 		    socklen_t);
149*199767f8SToomas Soome int		 inet_pton(int, const char * __restrict, void * __restrict);
150*199767f8SToomas Soome 
151*199767f8SToomas Soome #if __BSD_VISIBLE
152*199767f8SToomas Soome int		 inet_aton(const char *, struct in_addr *);
153*199767f8SToomas Soome in_addr_t	 inet_lnaof(struct in_addr);
154*199767f8SToomas Soome struct in_addr	 inet_makeaddr(in_addr_t, in_addr_t);
155*199767f8SToomas Soome char *		 inet_neta(in_addr_t, char *, size_t);
156*199767f8SToomas Soome in_addr_t	 inet_netof(struct in_addr);
157*199767f8SToomas Soome in_addr_t	 inet_network(const char *);
158*199767f8SToomas Soome char		*inet_net_ntop(int, const void *, int, char *, size_t);
159*199767f8SToomas Soome int		 inet_net_pton(int, const char *, void *, size_t);
160*199767f8SToomas Soome char		*inet_ntoa_r(struct in_addr, char *buf, socklen_t size);
161*199767f8SToomas Soome char		*inet_cidr_ntop(int, const void *, int, char *, size_t);
162*199767f8SToomas Soome int		 inet_cidr_pton(int, const char *, void *, int *);
163*199767f8SToomas Soome unsigned	 inet_nsap_addr(const char *, unsigned char *, int);
164*199767f8SToomas Soome char		*inet_nsap_ntoa(int, const unsigned char *, char *);
165*199767f8SToomas Soome #endif /* __BSD_VISIBLE */
166*199767f8SToomas Soome __END_DECLS
167*199767f8SToomas Soome 
168*199767f8SToomas Soome #ifndef _BYTEORDER_FUNC_DEFINED
169*199767f8SToomas Soome #define	_BYTEORDER_FUNC_DEFINED
170*199767f8SToomas Soome #define	htonl(x)	__htonl(x)
171*199767f8SToomas Soome #define	htons(x)	__htons(x)
172*199767f8SToomas Soome #define	ntohl(x)	__ntohl(x)
173*199767f8SToomas Soome #define	ntohs(x)	__ntohs(x)
174*199767f8SToomas Soome #endif
175*199767f8SToomas Soome 
176*199767f8SToomas Soome #endif /* !_ARPA_INET_H_ */
177*199767f8SToomas Soome 
178*199767f8SToomas Soome /*! \file */
179