xref: /freebsd/include/netdb.h (revision 5a1d14419a5b620430949a46cb6ee63148a43cb9)
159deaec5SRodney W. Grimes /*-
26e778a7eSPedro F. Giffuni  * SPDX-License-Identifier: (BSD-3-Clause AND ISC)
32321c474SPedro F. Giffuni  *
459deaec5SRodney W. Grimes  * Copyright (c) 1980, 1983, 1988, 1993
559deaec5SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
659deaec5SRodney W. Grimes  *
759deaec5SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
859deaec5SRodney W. Grimes  * modification, are permitted provided that the following conditions
959deaec5SRodney W. Grimes  * are met:
1059deaec5SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
1159deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1259deaec5SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1359deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1459deaec5SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15f2556687SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
1659deaec5SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
1759deaec5SRodney W. Grimes  *    without specific prior written permission.
1859deaec5SRodney W. Grimes  *
1959deaec5SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2059deaec5SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2159deaec5SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2259deaec5SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2359deaec5SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2459deaec5SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2559deaec5SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2659deaec5SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2759deaec5SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2859deaec5SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2959deaec5SRodney W. Grimes  * SUCH DAMAGE.
3059deaec5SRodney W. Grimes  *
3159deaec5SRodney W. Grimes  * -
3259deaec5SRodney W. Grimes  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
3359deaec5SRodney W. Grimes  *
3459deaec5SRodney W. Grimes  * Permission to use, copy, modify, and distribute this software for any
3559deaec5SRodney W. Grimes  * purpose with or without fee is hereby granted, provided that the above
3659deaec5SRodney W. Grimes  * copyright notice and this permission notice appear in all copies, and that
3759deaec5SRodney W. Grimes  * the name of Digital Equipment Corporation not be used in advertising or
3859deaec5SRodney W. Grimes  * publicity pertaining to distribution of the document or software without
3959deaec5SRodney W. Grimes  * specific, written prior permission.
4059deaec5SRodney W. Grimes  *
4159deaec5SRodney W. Grimes  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
4259deaec5SRodney W. Grimes  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
4359deaec5SRodney W. Grimes  * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
4459deaec5SRodney W. Grimes  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
4559deaec5SRodney W. Grimes  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
4659deaec5SRodney W. Grimes  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
4759deaec5SRodney W. Grimes  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
4859deaec5SRodney W. Grimes  * SOFTWARE.
4959deaec5SRodney W. Grimes  * -
5059deaec5SRodney W. Grimes  * --Copyright--
5159deaec5SRodney W. Grimes  */
5259deaec5SRodney W. Grimes 
530160f9c0SPeter Wemm /*
540160f9c0SPeter Wemm  *      From: Id: netdb.h,v 8.9 1996/11/19 08:39:29 vixie Exp $
550160f9c0SPeter Wemm  */
560160f9c0SPeter Wemm 
5759deaec5SRodney W. Grimes #ifndef _NETDB_H_
5859deaec5SRodney W. Grimes #define _NETDB_H_
5959deaec5SRodney W. Grimes 
60315d6d9cSPeter Wemm #include <sys/cdefs.h>
61abbd8902SMike Barcroft #include <sys/_types.h>
62ad9fdc8fSHajimu UMEMOTO 
6307acf54bSEd Schouten #ifndef _IN_ADDR_T_DECLARED
6407acf54bSEd Schouten typedef	__uint32_t	in_addr_t;
6507acf54bSEd Schouten #define	_IN_ADDR_T_DECLARED
6607acf54bSEd Schouten #endif
6707acf54bSEd Schouten 
6807acf54bSEd Schouten #ifndef _IN_PORT_T_DECLARED
6907acf54bSEd Schouten typedef	__uint16_t	in_port_t;
7007acf54bSEd Schouten #define	_IN_PORT_T_DECLARED
7107acf54bSEd Schouten #endif
7207acf54bSEd Schouten 
73abbd8902SMike Barcroft #ifndef _SIZE_T_DECLARED
74abbd8902SMike Barcroft typedef	__size_t	size_t;
75abbd8902SMike Barcroft #define	_SIZE_T_DECLARED
76ad9fdc8fSHajimu UMEMOTO #endif
77315d6d9cSPeter Wemm 
78abbd8902SMike Barcroft #ifndef _SOCKLEN_T_DECLARED
79abbd8902SMike Barcroft typedef	__socklen_t	socklen_t;
80abbd8902SMike Barcroft #define	_SOCKLEN_T_DECLARED
813e9c0bd5SBruce Evans #endif
823e9c0bd5SBruce Evans 
83036ae3ddSHajimu UMEMOTO #ifndef _UINT32_T_DECLARED
84036ae3ddSHajimu UMEMOTO typedef	__uint32_t	uint32_t;
85036ae3ddSHajimu UMEMOTO #define	_UINT32_T_DECLARED
86036ae3ddSHajimu UMEMOTO #endif
87036ae3ddSHajimu UMEMOTO 
880160f9c0SPeter Wemm #ifndef _PATH_HEQUIV
8959deaec5SRodney W. Grimes # define	_PATH_HEQUIV	"/etc/hosts.equiv"
900160f9c0SPeter Wemm #endif
9159deaec5SRodney W. Grimes #define	_PATH_HOSTS	"/etc/hosts"
9259deaec5SRodney W. Grimes #define	_PATH_NETWORKS	"/etc/networks"
9359deaec5SRodney W. Grimes #define	_PATH_PROTOCOLS	"/etc/protocols"
9459deaec5SRodney W. Grimes #define	_PATH_SERVICES	"/etc/services"
95e622b479SHajimu UMEMOTO #define	_PATH_SERVICES_DB "/var/db/services.db"
9659deaec5SRodney W. Grimes 
975342d17fSHajimu UMEMOTO #define	h_errno (*__h_errno())
98d58a9efdSPeter Wemm 
9959deaec5SRodney W. Grimes /*
10059deaec5SRodney W. Grimes  * Structures returned by network data base library.  All addresses are
10159deaec5SRodney W. Grimes  * supplied in host order, and returned in network order (suitable for
10259deaec5SRodney W. Grimes  * use in system calls).
10359deaec5SRodney W. Grimes  */
10459deaec5SRodney W. Grimes struct hostent {
10559deaec5SRodney W. Grimes 	char	*h_name;	/* official name of host */
10659deaec5SRodney W. Grimes 	char	**h_aliases;	/* alias list */
10759deaec5SRodney W. Grimes 	int	h_addrtype;	/* host address type */
10859deaec5SRodney W. Grimes 	int	h_length;	/* length of address */
10959deaec5SRodney W. Grimes 	char	**h_addr_list;	/* list of addresses from name server */
11071d9c781SMike Pritchard #define	h_addr	h_addr_list[0]	/* address, for backward compatibility */
11159deaec5SRodney W. Grimes };
11259deaec5SRodney W. Grimes 
11359deaec5SRodney W. Grimes struct netent {
11459deaec5SRodney W. Grimes 	char		*n_name;	/* official name of net */
11559deaec5SRodney W. Grimes 	char		**n_aliases;	/* alias list */
11659deaec5SRodney W. Grimes 	int		n_addrtype;	/* net address type */
117036ae3ddSHajimu UMEMOTO 	uint32_t	n_net;		/* network # */
11859deaec5SRodney W. Grimes };
11959deaec5SRodney W. Grimes 
12059deaec5SRodney W. Grimes struct servent {
12159deaec5SRodney W. Grimes 	char	*s_name;	/* official service name */
12259deaec5SRodney W. Grimes 	char	**s_aliases;	/* alias list */
12359deaec5SRodney W. Grimes 	int	s_port;		/* port # */
12459deaec5SRodney W. Grimes 	char	*s_proto;	/* protocol to use */
12559deaec5SRodney W. Grimes };
12659deaec5SRodney W. Grimes 
12759deaec5SRodney W. Grimes struct protoent {
12859deaec5SRodney W. Grimes 	char	*p_name;	/* official protocol name */
12959deaec5SRodney W. Grimes 	char	**p_aliases;	/* alias list */
13059deaec5SRodney W. Grimes 	int	p_proto;	/* protocol # */
13159deaec5SRodney W. Grimes };
13259deaec5SRodney W. Grimes 
1337d56d374SYoshinobu Inoue struct addrinfo {
1347d56d374SYoshinobu Inoue 	int	ai_flags;	/* AI_PASSIVE, AI_CANONNAME, AI_NUMERICHOST */
135b1f9559aSHajimu UMEMOTO 	int	ai_family;	/* AF_xxx */
1367d56d374SYoshinobu Inoue 	int	ai_socktype;	/* SOCK_xxx */
1377d56d374SYoshinobu Inoue 	int	ai_protocol;	/* 0 or IPPROTO_xxx for IPv4 and IPv6 */
138036ae3ddSHajimu UMEMOTO 	socklen_t ai_addrlen;	/* length of ai_addr */
1397d56d374SYoshinobu Inoue 	char	*ai_canonname;	/* canonical name for hostname */
1407d56d374SYoshinobu Inoue 	struct	sockaddr *ai_addr;	/* binary address */
1417d56d374SYoshinobu Inoue 	struct	addrinfo *ai_next;	/* next structure in linked list */
1427d56d374SYoshinobu Inoue };
1437d56d374SYoshinobu Inoue 
14407acf54bSEd Schouten #define	IPPORT_RESERVED	1024
14507acf54bSEd Schouten 
14659deaec5SRodney W. Grimes /*
14759deaec5SRodney W. Grimes  * Error return codes from gethostbyname() and gethostbyaddr()
14833dee819SBrian Feldman  * (left in h_errno).
14959deaec5SRodney W. Grimes  */
15059deaec5SRodney W. Grimes 
151d58a9efdSPeter Wemm #define	NETDB_INTERNAL	-1	/* see errno */
152d58a9efdSPeter Wemm #define	NETDB_SUCCESS	0	/* no problem */
15359deaec5SRodney W. Grimes #define	HOST_NOT_FOUND	1 /* Authoritative Answer Host not found */
15471d9c781SMike Pritchard #define	TRY_AGAIN	2 /* Non-Authoritative Host not found, or SERVERFAIL */
15559deaec5SRodney W. Grimes #define	NO_RECOVERY	3 /* Non recoverable errors, FORMERR, REFUSED, NOTIMP */
15659deaec5SRodney W. Grimes #define	NO_DATA		4 /* Valid name, no data record of requested type */
15759deaec5SRodney W. Grimes #define	NO_ADDRESS	NO_DATA		/* no address, look for MX record */
15859deaec5SRodney W. Grimes 
1597d56d374SYoshinobu Inoue /*
16009ed8047SPedro F. Giffuni  * Error return codes from gai_strerror(3), see RFC 3493.
1617d56d374SYoshinobu Inoue  */
162*40e4e12bSMike Karels #if __BSD_VISIBLE	/* not in POSIX */
163*40e4e12bSMike Karels /* EAI_ADDRFAMILY was obsoleted by RFC 3493, used as extension */
1647d56d374SYoshinobu Inoue #define	EAI_ADDRFAMILY	 1	/* address family for hostname not supported */
16527f9f419SHajimu UMEMOTO #endif
16609ed8047SPedro F. Giffuni #define	EAI_AGAIN	 2	/* name could not be resolved at this time */
16709ed8047SPedro F. Giffuni #define	EAI_BADFLAGS	 3	/* flags parameter had an invalid value */
1687d56d374SYoshinobu Inoue #define	EAI_FAIL	 4	/* non-recoverable failure in name resolution */
169a5dabd6cSPedro F. Giffuni #define	EAI_FAMILY	 5	/* address family not recognized */
1707d56d374SYoshinobu Inoue #define	EAI_MEMORY	 6	/* memory allocation failure */
171*40e4e12bSMike Karels #if __BSD_VISIBLE	/* not in POSIX */
172*40e4e12bSMike Karels /* EAI_NODATA was obsoleted by RFC 3493, retained here as extension */
1737d56d374SYoshinobu Inoue #define	EAI_NODATA	 7	/* no address associated with hostname */
17427f9f419SHajimu UMEMOTO #endif
17509ed8047SPedro F. Giffuni #define	EAI_NONAME	 8	/* name does not resolve */
17609ed8047SPedro F. Giffuni #define	EAI_SERVICE	 9	/* service not recognized for socket type */
17709ed8047SPedro F. Giffuni #define	EAI_SOCKTYPE	10	/* intended socket type was not recognized */
1787d56d374SYoshinobu Inoue #define	EAI_SYSTEM	11	/* system error returned in errno */
179*40e4e12bSMike Karels #if __BSD_VISIBLE	/* not in POSIX */
180*40e4e12bSMike Karels /* The following 3 are not in RFC 3493 or POSIX, retained for compatibility */
181734aa104SHajimu UMEMOTO #define	EAI_BADHINTS	12	/* invalid value for hints */
182734aa104SHajimu UMEMOTO #define	EAI_PROTOCOL	13	/* resolved protocol is unknown */
183734aa104SHajimu UMEMOTO #define	EAI_OVERFLOW	14	/* argument buffer overflow */
184*40e4e12bSMike Karels #endif
185734aa104SHajimu UMEMOTO #define	EAI_MAX		15
1867d56d374SYoshinobu Inoue 
1877d56d374SYoshinobu Inoue /*
1887d56d374SYoshinobu Inoue  * Flag values for getaddrinfo()
1897d56d374SYoshinobu Inoue  */
1907d56d374SYoshinobu Inoue #define	AI_PASSIVE	0x00000001 /* get address to use bind() */
1917d56d374SYoshinobu Inoue #define	AI_CANONNAME	0x00000002 /* fill ai_canonname */
192c224435eSHajimu UMEMOTO #define	AI_NUMERICHOST	0x00000004 /* prevent host name resolution */
193c224435eSHajimu UMEMOTO #define	AI_NUMERICSERV	0x00000008 /* prevent service name resolution */
194c224435eSHajimu UMEMOTO /* valid flags for addrinfo (not a standard def, apps should not use it) */
19592826806SHajimu UMEMOTO #define AI_MASK \
196c224435eSHajimu UMEMOTO     (AI_PASSIVE | AI_CANONNAME | AI_NUMERICHOST | AI_NUMERICSERV | \
1972cff354fSHajimu UMEMOTO     AI_ADDRCONFIG | AI_ALL | AI_V4MAPPED)
1987d56d374SYoshinobu Inoue 
1997d56d374SYoshinobu Inoue #define	AI_ALL		0x00000100 /* IPv6 and IPv4-mapped (with AI_V4MAPPED) */
2007d56d374SYoshinobu Inoue #define	AI_V4MAPPED_CFG	0x00000200 /* accept IPv4-mapped if kernel supports */
2017d56d374SYoshinobu Inoue #define	AI_ADDRCONFIG	0x00000400 /* only if any address is assigned */
2027d56d374SYoshinobu Inoue #define	AI_V4MAPPED	0x00000800 /* accept IPv4-mapped IPv6 address */
2037d56d374SYoshinobu Inoue /* special recommended flags for getipnodebyname */
2047d56d374SYoshinobu Inoue #define	AI_DEFAULT	(AI_V4MAPPED_CFG | AI_ADDRCONFIG)
2057d56d374SYoshinobu Inoue 
2067d56d374SYoshinobu Inoue /*
2077d56d374SYoshinobu Inoue  * Constants for getnameinfo()
2087d56d374SYoshinobu Inoue  */
2097d56d374SYoshinobu Inoue #define	NI_MAXHOST	1025
2107d56d374SYoshinobu Inoue #define	NI_MAXSERV	32
2117d56d374SYoshinobu Inoue 
2127d56d374SYoshinobu Inoue /*
2137d56d374SYoshinobu Inoue  * Flag values for getnameinfo()
2147d56d374SYoshinobu Inoue  */
2157d56d374SYoshinobu Inoue #define	NI_NOFQDN	0x00000001
2167d56d374SYoshinobu Inoue #define	NI_NUMERICHOST	0x00000002
2177d56d374SYoshinobu Inoue #define	NI_NAMEREQD	0x00000004
2187d56d374SYoshinobu Inoue #define	NI_NUMERICSERV	0x00000008
2197d56d374SYoshinobu Inoue #define	NI_DGRAM	0x00000010
220b4a395a4SEd Schouten #define	NI_NUMERICSCOPE	0x00000020
2217d56d374SYoshinobu Inoue 
2227d56d374SYoshinobu Inoue /*
2237d56d374SYoshinobu Inoue  * Scope delimit character
2247d56d374SYoshinobu Inoue  */
22512cefbccSYoshinobu Inoue #define	SCOPE_DELIMITER	'%'
2267d56d374SYoshinobu Inoue 
22759deaec5SRodney W. Grimes __BEGIN_DECLS
228bb28f3c2SWarner Losh void		endhostent(void);
229bb28f3c2SWarner Losh void		endnetent(void);
230bb28f3c2SWarner Losh void		endprotoent(void);
231bb28f3c2SWarner Losh void		endservent(void);
2321a4cc578SDavid Schultz #if __BSD_VISIBLE || (__POSIX_VISIBLE && __POSIX_VISIBLE <= 200112)
2333da59cd0SHajimu UMEMOTO struct hostent	*gethostbyaddr(const void *, socklen_t, int);
234bb28f3c2SWarner Losh struct hostent	*gethostbyname(const char *);
2351a4cc578SDavid Schultz #endif
236bb28f3c2SWarner Losh struct hostent	*gethostent(void);
237036ae3ddSHajimu UMEMOTO struct netent	*getnetbyaddr(uint32_t, int);
238bb28f3c2SWarner Losh struct netent	*getnetbyname(const char *);
239bb28f3c2SWarner Losh struct netent	*getnetent(void);
240bb28f3c2SWarner Losh struct protoent	*getprotobyname(const char *);
241bb28f3c2SWarner Losh struct protoent	*getprotobynumber(int);
242bb28f3c2SWarner Losh struct protoent	*getprotoent(void);
243bb28f3c2SWarner Losh struct servent	*getservbyname(const char *, const char *);
244bb28f3c2SWarner Losh struct servent	*getservbyport(int, const char *);
245bb28f3c2SWarner Losh struct servent	*getservent(void);
246bb28f3c2SWarner Losh void		sethostent(int);
247bb28f3c2SWarner Losh /* void		sethostfile(const char *); */
248bb28f3c2SWarner Losh void		setnetent(int);
249bb28f3c2SWarner Losh void		setprotoent(int);
250bb28f3c2SWarner Losh int		getaddrinfo(const char *, const char *,
251bb28f3c2SWarner Losh 			    const struct addrinfo *, struct addrinfo **);
252bb28f3c2SWarner Losh int		getnameinfo(const struct sockaddr *, socklen_t, char *,
253bb28f3c2SWarner Losh 			    size_t, char *, size_t, int);
254bb28f3c2SWarner Losh void		freeaddrinfo(struct addrinfo *);
255ed613866SAlexey Zelkin const char	*gai_strerror(int);
256bb28f3c2SWarner Losh void		setservent(int);
25774b3fad6SPeter Wemm 
2581a4cc578SDavid Schultz #if __BSD_VISIBLE
2591a4cc578SDavid Schultz void		endnetgrent(void);
2601a4cc578SDavid Schultz void		freehostent(struct hostent *);
2611a4cc578SDavid Schultz int		gethostbyaddr_r(const void *, socklen_t, int, struct hostent *,
2621a4cc578SDavid Schultz     char *, size_t, struct hostent **, int *);
2631a4cc578SDavid Schultz int		gethostbyname_r(const char *, struct hostent *, char *, size_t,
2641a4cc578SDavid Schultz     struct hostent **, int *);
2651a4cc578SDavid Schultz struct hostent	*gethostbyname2(const char *, int);
2661a4cc578SDavid Schultz int		gethostbyname2_r(const char *, int, struct hostent *, char *,
2671a4cc578SDavid Schultz     size_t, struct hostent **, int *);
2681a4cc578SDavid Schultz int		gethostent_r(struct hostent *, char *, size_t,
2691a4cc578SDavid Schultz     struct hostent **, int *);
2701a4cc578SDavid Schultz struct hostent	*getipnodebyaddr(const void *, size_t, int, int *);
2711a4cc578SDavid Schultz struct hostent	*getipnodebyname(const char *, int, int, int *);
2721a4cc578SDavid Schultz int		getnetbyaddr_r(uint32_t, int, struct netent *, char *, size_t,
2731a4cc578SDavid Schultz     struct netent**, int *);
2741a4cc578SDavid Schultz int		getnetbyname_r(const char *, struct netent *, char *, size_t,
2751a4cc578SDavid Schultz     struct netent **, int *);
2761a4cc578SDavid Schultz int		getnetent_r(struct netent *, char *, size_t, struct netent **,
2771a4cc578SDavid Schultz     int *);
2781a4cc578SDavid Schultz int		getnetgrent(char **, char **, char **);
279714ac002SMark Johnston int		getnetgrent_r(char **, char **, char **, char *, size_t);
2801a4cc578SDavid Schultz int		getprotobyname_r(const char *, struct protoent *, char *,
2811a4cc578SDavid Schultz     size_t, struct protoent **);
2821a4cc578SDavid Schultz int		getprotobynumber_r(int, struct protoent *, char *, size_t,
2831a4cc578SDavid Schultz     struct protoent **);
2841a4cc578SDavid Schultz int		getprotoent_r(struct protoent *, char *, size_t,
2851a4cc578SDavid Schultz     struct protoent **);
2861a4cc578SDavid Schultz int		getservbyname_r(const char *, const char *, struct servent *,
2871a4cc578SDavid Schultz     char *, size_t, struct servent **);
2881a4cc578SDavid Schultz int		getservbyport_r(int, const char *, struct servent *, char *,
2891a4cc578SDavid Schultz     size_t, struct servent **);
2901a4cc578SDavid Schultz int		getservent_r(struct servent *, char *, size_t,
2911a4cc578SDavid Schultz     struct servent **);
2921a4cc578SDavid Schultz void		herror(const char *);
293f6ab8089SEd Schouten const char	*hstrerror(int);
2941a4cc578SDavid Schultz int		innetgr(const char *, const char *, const char *, const char *);
2951a4cc578SDavid Schultz void		setnetgrent(const char *);
2961a4cc578SDavid Schultz #endif
2971a4cc578SDavid Schultz 
2981a4cc578SDavid Schultz 
29974b3fad6SPeter Wemm /*
30074b3fad6SPeter Wemm  * PRIVATE functions specific to the FreeBSD implementation
30174b3fad6SPeter Wemm  */
30274b3fad6SPeter Wemm 
30374b3fad6SPeter Wemm /* DO NOT USE THESE, THEY ARE SUBJECT TO CHANGE AND ARE NOT PORTABLE!!! */
3045342d17fSHajimu UMEMOTO int	* __h_errno(void);
30559deaec5SRodney W. Grimes __END_DECLS
30659deaec5SRodney W. Grimes 
30759deaec5SRodney W. Grimes #endif /* !_NETDB_H_ */
308