Home | History | Annotate | Line # | Download | only in include
netdb.h revision 1.37
      1  1.37    kleink /*	$NetBSD: netdb.h,v 1.37 2004/05/08 18:52:15 kleink Exp $	*/
      2  1.12    itojun 
      3  1.12    itojun /*
      4  1.12    itojun  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      5  1.12    itojun  * All rights reserved.
      6  1.12    itojun  *
      7  1.12    itojun  * Redistribution and use in source and binary forms, with or without
      8  1.12    itojun  * modification, are permitted provided that the following conditions
      9  1.12    itojun  * are met:
     10  1.12    itojun  * 1. Redistributions of source code must retain the above copyright
     11  1.12    itojun  *    notice, this list of conditions and the following disclaimer.
     12  1.12    itojun  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.12    itojun  *    notice, this list of conditions and the following disclaimer in the
     14  1.12    itojun  *    documentation and/or other materials provided with the distribution.
     15  1.12    itojun  * 3. Neither the name of the project nor the names of its contributors
     16  1.12    itojun  *    may be used to endorse or promote products derived from this software
     17  1.12    itojun  *    without specific prior written permission.
     18  1.12    itojun  *
     19  1.12    itojun  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     20  1.12    itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21  1.12    itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22  1.12    itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     23  1.12    itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24  1.12    itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25  1.12    itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26  1.12    itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27  1.12    itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28  1.12    itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29  1.12    itojun  * SUCH DAMAGE.
     30  1.12    itojun  */
     31   1.9     perry 
     32   1.9     perry /*-
     33   1.6       mrg  * Copyright (c) 1980, 1983, 1988, 1993
     34   1.6       mrg  *	The Regents of the University of California.  All rights reserved.
     35   1.1       cgd  *
     36   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     37   1.1       cgd  * modification, are permitted provided that the following conditions
     38   1.1       cgd  * are met:
     39   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     40   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     41   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     42   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     43   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     44  1.31       agc  * 3. Neither the name of the University nor the names of its contributors
     45   1.1       cgd  *    may be used to endorse or promote products derived from this software
     46   1.1       cgd  *    without specific prior written permission.
     47   1.1       cgd  *
     48   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     49   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     50   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     51   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     52   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     53   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     54   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     55   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     56   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     57   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     58   1.1       cgd  * SUCH DAMAGE.
     59   1.9     perry  *
     60   1.9     perry  *      @(#)netdb.h	8.1 (Berkeley) 6/2/93
     61  1.10     perry  *	Id: netdb.h,v 4.9.1.2 1993/05/17 09:59:01 vixie Exp
     62   1.6       mrg  * -
     63   1.6       mrg  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
     64   1.9     perry  *
     65   1.6       mrg  * Permission to use, copy, modify, and distribute this software for any
     66   1.6       mrg  * purpose with or without fee is hereby granted, provided that the above
     67   1.6       mrg  * copyright notice and this permission notice appear in all copies, and that
     68   1.6       mrg  * the name of Digital Equipment Corporation not be used in advertising or
     69   1.6       mrg  * publicity pertaining to distribution of the document or software without
     70   1.6       mrg  * specific, written prior permission.
     71   1.9     perry  *
     72   1.6       mrg  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
     73   1.6       mrg  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
     74   1.6       mrg  * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
     75   1.6       mrg  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
     76   1.6       mrg  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
     77   1.6       mrg  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
     78   1.6       mrg  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
     79   1.6       mrg  * SOFTWARE.
     80   1.6       mrg  * -
     81   1.6       mrg  * --Copyright--
     82   1.6       mrg  */
     83   1.6       mrg 
     84   1.1       cgd #ifndef _NETDB_H_
     85   1.1       cgd #define _NETDB_H_
     86   1.1       cgd 
     87  1.13    kleink #include <machine/ansi.h>
     88  1.37    kleink #include <machine/endian_machdep.h>
     89  1.23    kleink #include <sys/ansi.h>
     90   1.6       mrg #include <sys/cdefs.h>
     91  1.29     bjh21 #include <sys/featuretest.h>
     92  1.13    kleink #include <inttypes.h>
     93   1.6       mrg 
     94  1.23    kleink /*
     95  1.23    kleink  * Data types
     96  1.23    kleink  */
     97  1.23    kleink #ifndef socklen_t
     98  1.23    kleink typedef __socklen_t	socklen_t;
     99  1.23    kleink #define socklen_t	__socklen_t
    100  1.23    kleink #endif
    101  1.23    kleink 
    102  1.13    kleink #ifdef  _BSD_SIZE_T_
    103  1.13    kleink typedef _BSD_SIZE_T_	size_t;
    104  1.13    kleink #undef  _BSD_SIZE_T_
    105  1.13    kleink #endif
    106  1.11    kleink 
    107  1.29     bjh21 #if defined(_NETBSD_SOURCE)
    108   1.1       cgd #define	_PATH_HEQUIV	"/etc/hosts.equiv"
    109   1.1       cgd #define	_PATH_HOSTS	"/etc/hosts"
    110   1.1       cgd #define	_PATH_NETWORKS	"/etc/networks"
    111   1.1       cgd #define	_PATH_PROTOCOLS	"/etc/protocols"
    112   1.1       cgd #define	_PATH_SERVICES	"/etc/services"
    113  1.11    kleink #endif
    114   1.1       cgd 
    115   1.6       mrg extern int h_errno;
    116   1.6       mrg 
    117   1.1       cgd /*
    118   1.1       cgd  * Structures returned by network data base library.  All addresses are
    119   1.1       cgd  * supplied in host order, and returned in network order (suitable for
    120   1.1       cgd  * use in system calls).
    121   1.1       cgd  */
    122   1.1       cgd struct	hostent {
    123   1.1       cgd 	char	*h_name;	/* official name of host */
    124   1.1       cgd 	char	**h_aliases;	/* alias list */
    125   1.1       cgd 	int	h_addrtype;	/* host address type */
    126   1.1       cgd 	int	h_length;	/* length of address */
    127   1.1       cgd 	char	**h_addr_list;	/* list of addresses from name server */
    128  1.28       wiz #define	h_addr	h_addr_list[0]	/* address, for backward compatibility */
    129   1.1       cgd };
    130   1.1       cgd 
    131   1.1       cgd /*
    132   1.1       cgd  * Assumption here is that a network number
    133   1.6       mrg  * fits in an unsigned long -- probably a poor one.
    134   1.1       cgd  */
    135   1.1       cgd struct	netent {
    136   1.1       cgd 	char		*n_name;	/* official name of net */
    137   1.1       cgd 	char		**n_aliases;	/* alias list */
    138   1.1       cgd 	int		n_addrtype;	/* net address type */
    139  1.37    kleink #if (defined(__sparc__) && defined(_LP64)) || \
    140  1.37    kleink     (defined(__sh__) && defined(_LP64) && (_BYTE_ORDER == _BIG_ENDIAN))
    141  1.37    kleink 	int		__n_pad0;	/* ABI compatibility */
    142  1.37    kleink #endif
    143  1.37    kleink 	uint32_t	n_net;		/* network # */
    144  1.37    kleink #if defined(__alpha__) || (defined(__i386__) && defined(_LP64)) || \
    145  1.37    kleink     (defined(__sh__) && defined(_LP64) && (_BYTE_ORDER == _LITTLE_ENDIAN))
    146  1.37    kleink 	int		__n_pad0;	/* ABI compatibility */
    147  1.37    kleink #endif
    148   1.1       cgd };
    149   1.1       cgd 
    150   1.1       cgd struct	servent {
    151   1.1       cgd 	char	*s_name;	/* official service name */
    152   1.1       cgd 	char	**s_aliases;	/* alias list */
    153   1.1       cgd 	int	s_port;		/* port # */
    154   1.1       cgd 	char	*s_proto;	/* protocol to use */
    155   1.1       cgd };
    156   1.1       cgd 
    157   1.1       cgd struct	protoent {
    158   1.1       cgd 	char	*p_name;	/* official protocol name */
    159   1.1       cgd 	char	**p_aliases;	/* alias list */
    160   1.1       cgd 	int	p_proto;	/* protocol # */
    161   1.1       cgd };
    162   1.1       cgd 
    163  1.23    kleink /*
    164  1.23    kleink  * Note: ai_addrlen used to be a size_t, per RFC 2553.
    165  1.23    kleink  * In XNS5.2, and subsequently in POSIX-2001 and
    166  1.23    kleink  * draft-ietf-ipngwg-rfc2553bis-02.txt it was changed to a socklen_t.
    167  1.23    kleink  * To accomodate for this while preserving binary compatibility with the
    168  1.23    kleink  * old interface, we prepend or append 32 bits of padding, depending on
    169  1.23    kleink  * the (LP64) architecture's endianness.
    170  1.23    kleink  *
    171  1.23    kleink  * This should be deleted the next time the libc major number is
    172  1.23    kleink  * incremented.
    173  1.23    kleink  */
    174  1.30     bjh21 #if (_POSIX_C_SOURCE - 0) >= 200112L || (_XOPEN_SOURCE - 0) >= 520 || \
    175  1.30     bjh21     defined(_NETBSD_SOURCE)
    176  1.12    itojun struct addrinfo {
    177  1.36    itojun 	int	ai_flags;	/* AI_xxx */
    178  1.12    itojun 	int	ai_family;	/* PF_xxx */
    179  1.12    itojun 	int	ai_socktype;	/* SOCK_xxx */
    180  1.12    itojun 	int	ai_protocol;	/* 0 or IPPROTO_xxx for IPv4 and IPv6 */
    181  1.23    kleink #if defined(__sparc64__)
    182  1.23    kleink 	int	__ai_pad0;
    183  1.23    kleink #endif
    184  1.23    kleink 	socklen_t ai_addrlen;	/* length of ai_addr */
    185  1.23    kleink #if defined(__alpha__) || (defined(__i386__) && defined(_LP64))
    186  1.23    kleink 	int	__ai_pad0;
    187  1.23    kleink #endif
    188  1.12    itojun 	char	*ai_canonname;	/* canonical name for hostname */
    189  1.12    itojun 	struct sockaddr *ai_addr;	/* binary address */
    190  1.12    itojun 	struct addrinfo *ai_next;	/* next structure in linked list */
    191  1.12    itojun };
    192  1.13    kleink #endif
    193  1.12    itojun 
    194   1.1       cgd /*
    195   1.1       cgd  * Error return codes from gethostbyname() and gethostbyaddr()
    196   1.1       cgd  * (left in extern int h_errno).
    197   1.1       cgd  */
    198   1.5       jtc 
    199  1.29     bjh21 #if defined(_NETBSD_SOURCE)
    200   1.6       mrg #define	NETDB_INTERNAL	-1	/* see errno */
    201   1.6       mrg #define	NETDB_SUCCESS	0	/* no problem */
    202  1.11    kleink #endif
    203   1.1       cgd #define	HOST_NOT_FOUND	1 /* Authoritative Answer Host not found */
    204  1.16       mjl #define	TRY_AGAIN	2 /* Non-Authoritative Host not found, or SERVERFAIL */
    205   1.1       cgd #define	NO_RECOVERY	3 /* Non recoverable errors, FORMERR, REFUSED, NOTIMP */
    206   1.1       cgd #define	NO_DATA		4 /* Valid name, no data record of requested type */
    207  1.29     bjh21 #if defined(_NETBSD_SOURCE)
    208   1.1       cgd #define	NO_ADDRESS	NO_DATA		/* no address, look for MX record */
    209  1.11    kleink #endif
    210   1.1       cgd 
    211  1.12    itojun /*
    212  1.12    itojun  * Error return codes from getaddrinfo()
    213  1.12    itojun  */
    214  1.30     bjh21 #if (_POSIX_C_SOURCE - 0) >= 200112L || (_XOPEN_SOURCE - 0) >= 520 || \
    215  1.30     bjh21     defined(_NETBSD_SOURCE)
    216  1.12    itojun #define	EAI_ADDRFAMILY	 1	/* address family for hostname not supported */
    217  1.12    itojun #define	EAI_AGAIN	 2	/* temporary failure in name resolution */
    218  1.12    itojun #define	EAI_BADFLAGS	 3	/* invalid value for ai_flags */
    219  1.12    itojun #define	EAI_FAIL	 4	/* non-recoverable failure in name resolution */
    220  1.12    itojun #define	EAI_FAMILY	 5	/* ai_family not supported */
    221  1.12    itojun #define	EAI_MEMORY	 6	/* memory allocation failure */
    222  1.12    itojun #define	EAI_NODATA	 7	/* no address associated with hostname */
    223  1.12    itojun #define	EAI_NONAME	 8	/* hostname nor servname provided, or not known */
    224  1.12    itojun #define	EAI_SERVICE	 9	/* servname not supported for ai_socktype */
    225  1.12    itojun #define	EAI_SOCKTYPE	10	/* ai_socktype not supported */
    226  1.12    itojun #define	EAI_SYSTEM	11	/* system error returned in errno */
    227  1.20     lukem #define	EAI_BADHINTS	12
    228  1.20     lukem #define	EAI_PROTOCOL	13
    229  1.20     lukem #define	EAI_MAX		14
    230  1.30     bjh21 #endif /* _POSIX_C_SOURCE >= 200112 || _XOPEN_SOURCE >= 520 || _NETBSD_SOURCE */
    231  1.12    itojun 
    232  1.12    itojun /*
    233  1.12    itojun  * Flag values for getaddrinfo()
    234  1.12    itojun  */
    235  1.30     bjh21 #if (_POSIX_C_SOURCE - 0) >= 200112L || (_XOPEN_SOURCE - 0) >= 520 || \
    236  1.30     bjh21     defined(_NETBSD_SOURCE)
    237  1.12    itojun #define	AI_PASSIVE	0x00000001 /* get address to use bind() */
    238  1.12    itojun #define	AI_CANONNAME	0x00000002 /* fill ai_canonname */
    239  1.35    itojun #define	AI_NUMERICHOST	0x00000004 /* prevent host name resolution */
    240  1.35    itojun #define	AI_NUMERICSERV	0x00000008 /* prevent service name resolution */
    241  1.35    itojun /* valid flags for addrinfo (not a standard def, apps should not use it) */
    242  1.35    itojun #define	AI_MASK	\
    243  1.35    itojun     (AI_PASSIVE | AI_CANONNAME | AI_NUMERICHOST | AI_NUMERICSERV)
    244  1.13    kleink #endif
    245  1.12    itojun 
    246  1.30     bjh21 #if (_POSIX_C_SOURCE - 0) >= 200112L || (_XOPEN_SOURCE - 0) >= 520 || \
    247  1.30     bjh21     defined(_NETBSD_SOURCE)
    248  1.12    itojun /*
    249  1.12    itojun  * Constants for getnameinfo()
    250  1.12    itojun  */
    251  1.29     bjh21 #if defined(_NETBSD_SOURCE)
    252  1.12    itojun #define	NI_MAXHOST	1025
    253  1.12    itojun #define	NI_MAXSERV	32
    254  1.22    kleink #endif
    255  1.12    itojun 
    256  1.12    itojun /*
    257  1.12    itojun  * Flag values for getnameinfo()
    258  1.12    itojun  */
    259  1.12    itojun #define	NI_NOFQDN	0x00000001
    260  1.12    itojun #define	NI_NUMERICHOST	0x00000002
    261  1.12    itojun #define	NI_NAMEREQD	0x00000004
    262  1.12    itojun #define	NI_NUMERICSERV	0x00000008
    263  1.12    itojun #define	NI_DGRAM	0x00000010
    264  1.29     bjh21 #if defined(_NETBSD_SOURCE)
    265  1.20     lukem #define	NI_WITHSCOPEID	0x00000020	/*KAME extension*/
    266  1.22    kleink #endif
    267  1.14    itojun 
    268  1.14    itojun /*
    269  1.14    itojun  * Scope delimit character
    270  1.14    itojun  */
    271  1.29     bjh21 #if defined(_NETBSD_SOURCE)
    272  1.20     lukem #define	SCOPE_DELIMITER '%'		/*KAME extension*/
    273  1.22    kleink #endif
    274  1.30     bjh21 #endif /* (_POSIX_C_SOURCE - 0) >= 200112L || ... */
    275  1.18    itojun 
    276   1.1       cgd __BEGIN_DECLS
    277   1.1       cgd void		endhostent __P((void));
    278   1.1       cgd void		endnetent __P((void));
    279   1.1       cgd void		endprotoent __P((void));
    280   1.1       cgd void		endservent __P((void));
    281  1.30     bjh21 #if (_XOPEN_SOURCE - 0) >= 500 && (_XOPEN_SOURCE - 0) < 600 || \
    282  1.30     bjh21     defined(_NETBSD_SOURCE)
    283  1.12    itojun void		freehostent __P((struct hostent *));
    284  1.13    kleink #endif
    285  1.21    kleink struct hostent	*gethostbyaddr __P((const char *, socklen_t, int));
    286   1.3   deraadt struct hostent	*gethostbyname __P((const char *));
    287  1.29     bjh21 #if defined(_NETBSD_SOURCE)
    288   1.6       mrg struct hostent	*gethostbyname2 __P((const char *, int));
    289  1.11    kleink #endif
    290   1.3   deraadt struct hostent	*gethostent __P((void));
    291  1.30     bjh21 #if (_XOPEN_SOURCE - 0) >= 520 && (_XOPEN_SOURCE - 0) < 600 || \
    292  1.30     bjh21     defined(_NETBSD_SOURCE)
    293  1.15    itojun #if 0 /* we do not ship these */
    294  1.12    itojun struct hostent	*getipnodebyaddr __P((const void *, size_t, int, int *));
    295  1.12    itojun struct hostent	*getipnodebyname __P((const char *, int, int, int *));
    296  1.15    itojun #endif
    297  1.13    kleink #endif
    298  1.37    kleink struct netent	*getnetbyaddr __P((uint32_t, int));
    299   1.1       cgd struct netent	*getnetbyname __P((const char *));
    300   1.1       cgd struct netent	*getnetent __P((void));
    301   1.1       cgd struct protoent	*getprotobyname __P((const char *));
    302   1.1       cgd struct protoent	*getprotobynumber __P((int));
    303   1.1       cgd struct protoent	*getprotoent __P((void));
    304   1.1       cgd struct servent	*getservbyname __P((const char *, const char *));
    305   1.1       cgd struct servent	*getservbyport __P((int, const char *));
    306   1.1       cgd struct servent	*getservent __P((void));
    307  1.29     bjh21 #if defined(_NETBSD_SOURCE)
    308   1.1       cgd void		herror __P((const char *));
    309   1.6       mrg const char	*hstrerror __P((int));
    310  1.11    kleink #endif
    311   1.1       cgd void		sethostent __P((int));
    312  1.29     bjh21 #if defined(_NETBSD_SOURCE)
    313   1.1       cgd /* void		sethostfile __P((const char *)); */
    314  1.11    kleink #endif
    315   1.1       cgd void		setnetent __P((int));
    316   1.1       cgd void		setprotoent __P((int));
    317  1.30     bjh21 #if (_POSIX_C_SOURCE - 0) >= 200112L || (_XOPEN_SOURCE - 0) >= 520 || \
    318  1.30     bjh21     defined(_NETBSD_SOURCE)
    319  1.12    itojun int		getaddrinfo __P((const char *, const char *,
    320  1.12    itojun 				 const struct addrinfo *, struct addrinfo **));
    321  1.18    itojun int		getnameinfo __P((const struct sockaddr *, socklen_t, char *,
    322  1.26    kleink 				 socklen_t, char *, socklen_t, int));
    323  1.12    itojun void		freeaddrinfo __P((struct addrinfo *));
    324  1.12    itojun char		*gai_strerror __P((int));
    325  1.13    kleink #endif
    326   1.1       cgd void		setservent __P((int));
    327  1.32  christos 
    328  1.34  christos #if defined(_NETBSD_SOURCE) && defined(_LIBC)
    329  1.32  christos 
    330  1.32  christos struct protoent_data {
    331  1.32  christos         FILE *fp;
    332  1.32  christos 	struct protoent proto;
    333  1.32  christos 	char **aliases;
    334  1.32  christos 	size_t maxaliases;
    335  1.32  christos 	int stayopen;
    336  1.33  christos 	char *line;
    337  1.33  christos 	void *dummy;
    338  1.32  christos };
    339  1.32  christos 
    340  1.32  christos struct protoent	*getprotoent_r __P((struct protoent *, struct protoent_data *));
    341  1.32  christos struct protoent	*getprotobyname_r __P((const char *,
    342  1.32  christos     struct protoent *, struct protoent_data *));
    343  1.32  christos struct protoent	*getprotobynumber_r __P((int,
    344  1.32  christos     struct protoent *, struct protoent_data *));
    345  1.32  christos struct protoent	*getprotoent_r __P((struct protoent *, struct protoent_data *));
    346  1.32  christos void setprotoent_r __P((int, struct protoent_data *));
    347  1.32  christos void endprotoent_r __P((struct protoent_data *));
    348  1.32  christos 
    349  1.32  christos struct servent_data {
    350  1.32  christos         FILE *fp;
    351  1.32  christos 	struct servent serv;
    352  1.32  christos 	char **aliases;
    353  1.32  christos 	size_t maxaliases;
    354  1.32  christos 	int stayopen;
    355  1.33  christos 	char *line;
    356  1.33  christos 	void *dummy;
    357  1.32  christos };
    358  1.32  christos 
    359  1.32  christos struct servent	*getservent_r __P((struct servent *, struct servent_data *));
    360  1.32  christos struct servent	*getservbyname_r __P((const char *, const char *,
    361  1.32  christos     struct servent *, struct servent_data *));
    362  1.32  christos struct servent	*getservbyport_r __P((int, const char *,
    363  1.32  christos     struct servent *, struct servent_data *));
    364  1.32  christos void setservent_r __P((int, struct servent_data *));
    365  1.32  christos void endservent_r __P((struct servent_data *));
    366  1.32  christos 
    367  1.34  christos #endif /* _NETBSD_SOURCE && _LIBC */
    368   1.1       cgd __END_DECLS
    369   1.1       cgd 
    370   1.1       cgd #endif /* !_NETDB_H_ */
    371