2003-08-07 13:44:09 +04:00
|
|
|
/* $NetBSD: inet.h,v 1.18 2003/08/07 09:44:12 agc Exp $ */
|
2002-04-26 19:32:45 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1996-02-02 18:29:18 +03:00
|
|
|
* ++Copyright++ 1983, 1993
|
|
|
|
* -
|
|
|
|
* Copyright (c) 1983, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
1993-03-21 12:45:37 +03:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 13:44:09 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
1996-02-02 18:29:18 +03:00
|
|
|
*
|
1993-03-21 12:45:37 +03:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
1996-02-02 18:29:18 +03:00
|
|
|
* -
|
|
|
|
* Portions Copyright (c) 1993 by Digital Equipment Corporation.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies, and that
|
|
|
|
* the name of Digital Equipment Corporation not be used in advertising or
|
|
|
|
* publicity pertaining to distribution of the document or software without
|
|
|
|
* specific, written prior permission.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
|
|
|
|
* WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
|
|
|
|
* CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
|
|
|
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
|
|
* SOFTWARE.
|
|
|
|
* -
|
|
|
|
* --Copyright--
|
2002-04-26 19:32:45 +04:00
|
|
|
*
|
1996-02-02 18:29:18 +03:00
|
|
|
* @(#)inet.h 8.1 (Berkeley) 6/2/93
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
1998-02-10 03:25:25 +03:00
|
|
|
#ifndef _ARPA_INET_H_
|
|
|
|
#define _ARPA_INET_H_
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/* External definitions for functions in inet(3) */
|
|
|
|
|
2003-04-29 15:58:15 +04:00
|
|
|
#include <sys/ansi.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <sys/cdefs.h>
|
2003-04-29 15:58:15 +04:00
|
|
|
#include <sys/featuretest.h>
|
|
|
|
#include <sys/types.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2003-04-29 15:58:15 +04:00
|
|
|
#include <netinet/in.h>
|
2002-05-14 22:57:31 +04:00
|
|
|
|
2003-04-29 15:58:15 +04:00
|
|
|
#if (_POSIX_C_SOURCE - 0) >= 200112L || (_XOPEN_SOURCE - 0) >= 520 || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
2002-05-14 22:57:31 +04:00
|
|
|
#ifndef socklen_t
|
|
|
|
typedef __socklen_t socklen_t;
|
|
|
|
#define socklen_t __socklen_t
|
|
|
|
#endif
|
2003-04-29 15:58:15 +04:00
|
|
|
#endif /* _POSIX_C_SOURCE >= 200112 || XOPEN_SOURCE >= 520 || _NETBSD_SOURCE */
|
2002-05-14 22:57:31 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
__BEGIN_DECLS
|
2003-05-05 17:56:13 +04:00
|
|
|
in_addr_t inet_addr __P((const char *));
|
|
|
|
in_addr_t inet_lnaof __P((struct in_addr));
|
|
|
|
struct in_addr inet_makeaddr __P((in_addr_t, in_addr_t));
|
|
|
|
in_addr_t inet_netof __P((struct in_addr));
|
|
|
|
in_addr_t inet_network __P((const char *));
|
1994-04-07 10:58:29 +04:00
|
|
|
char *inet_ntoa __P((struct in_addr));
|
2003-04-29 15:58:15 +04:00
|
|
|
#if (_POSIX_C_SOURCE - 0) >= 200112L || (_XOPEN_SOURCE - 0) >= 520 || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
2003-06-30 19:45:02 +04:00
|
|
|
const char *inet_ntop __P((int, const void * __restrict,
|
|
|
|
char * __restrict, socklen_t));
|
2003-06-30 19:14:17 +04:00
|
|
|
int inet_pton __P((int, const char * __restrict,
|
|
|
|
void * __restrict));
|
1999-07-03 17:30:38 +04:00
|
|
|
#endif
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if defined(_NETBSD_SOURCE)
|
1999-07-03 17:30:38 +04:00
|
|
|
int inet_aton __P((const char *, struct in_addr *));
|
|
|
|
char * inet_neta __P((u_long, char *, size_t));
|
|
|
|
char *inet_net_ntop __P((int, const void *, int, char *, size_t));
|
|
|
|
int inet_net_pton __P((int, const char *, void *, size_t));
|
1997-04-13 13:26:21 +04:00
|
|
|
u_int inet_nsap_addr __P((const char *, u_char *, int));
|
|
|
|
char *inet_nsap_ntoa __P((int, const u_char *, char *));
|
1999-07-03 17:30:38 +04:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
__END_DECLS
|
|
|
|
|
1998-02-10 03:25:25 +03:00
|
|
|
#endif /* _ARPA_INET_H_ */
|