mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
* m4/gnulib-cache.m4: Remove `strcase' and `version-etc-fsf'. * configure.ac (POTENTIAL_GCC_CFLAGS): Remove `-Wundef'. * libguile/script.c: Don't include <version-etc.h>.
115 lines
3.9 KiB
C
115 lines
3.9 KiB
C
/* A GNU-like <arpa/inet.h>.
|
|
|
|
Copyright (C) 2005-2006, 2008-2011 Free Software Foundation, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
|
|
|
#ifndef _GL_ARPA_INET_H
|
|
|
|
#if __GNUC__ >= 3
|
|
@PRAGMA_SYSTEM_HEADER@
|
|
#endif
|
|
@PRAGMA_COLUMNS@
|
|
|
|
#if @HAVE_FEATURES_H@
|
|
# include <features.h> /* for __GLIBC__ */
|
|
#endif
|
|
|
|
/* Gnulib's sys/socket.h is responsible for defining socklen_t (used below) and
|
|
for pulling in winsock2.h etc. under MinGW.
|
|
But avoid namespace pollution on glibc systems. */
|
|
#ifndef __GLIBC__
|
|
# include <sys/socket.h>
|
|
#endif
|
|
|
|
/* On NonStop Kernel, inet_ntop and inet_pton are declared in <netdb.h>.
|
|
But avoid namespace pollution on glibc systems. */
|
|
#if defined __TANDEM && !defined __GLIBC__
|
|
# include <netdb.h>
|
|
#endif
|
|
|
|
#if @HAVE_ARPA_INET_H@
|
|
|
|
/* The include_next requires a split double-inclusion guard. */
|
|
# @INCLUDE_NEXT@ @NEXT_ARPA_INET_H@
|
|
|
|
#endif
|
|
|
|
#ifndef _GL_ARPA_INET_H
|
|
#define _GL_ARPA_INET_H
|
|
|
|
/* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */
|
|
|
|
/* The definition of _GL_ARG_NONNULL is copied here. */
|
|
|
|
/* The definition of _GL_WARN_ON_USE is copied here. */
|
|
|
|
|
|
#if @GNULIB_INET_NTOP@
|
|
# if !@HAVE_DECL_INET_NTOP@
|
|
/* Converts an internet address from internal format to a printable,
|
|
presentable format.
|
|
AF is an internet address family, such as AF_INET or AF_INET6.
|
|
SRC points to a 'struct in_addr' (for AF_INET) or 'struct in6_addr'
|
|
(for AF_INET6).
|
|
DST points to a buffer having room for CNT bytes.
|
|
The printable representation of the address (in numeric form, not
|
|
surrounded by [...], no reverse DNS is done) is placed in DST, and
|
|
DST is returned. If an error occurs, the return value is NULL and
|
|
errno is set. If CNT bytes are not sufficient to hold the result,
|
|
the return value is NULL and errno is set to ENOSPC. A good value
|
|
for CNT is 46.
|
|
|
|
For more details, see the POSIX:2001 specification
|
|
<http://www.opengroup.org/susv3xsh/inet_ntop.html>. */
|
|
_GL_FUNCDECL_SYS (inet_ntop, const char *,
|
|
(int af, const void *restrict src,
|
|
char *restrict dst, socklen_t cnt)
|
|
_GL_ARG_NONNULL ((2, 3)));
|
|
# endif
|
|
/* Need to cast, because on NonStop Kernel, the fourth parameter is
|
|
size_t cnt. */
|
|
_GL_CXXALIAS_SYS_CAST (inet_ntop, const char *,
|
|
(int af, const void *restrict src,
|
|
char *restrict dst, socklen_t cnt));
|
|
_GL_CXXALIASWARN (inet_ntop);
|
|
#elif defined GNULIB_POSIXCHECK
|
|
# undef inet_ntop
|
|
# if HAVE_RAW_DECL_INET_NTOP
|
|
_GL_WARN_ON_USE (inet_ntop, "inet_ntop is unportable - "
|
|
"use gnulib module inet_ntop for portability");
|
|
# endif
|
|
#endif
|
|
|
|
#if @GNULIB_INET_PTON@
|
|
# if !@HAVE_DECL_INET_PTON@
|
|
_GL_FUNCDECL_SYS (inet_pton, int,
|
|
(int af, const char *restrict src, void *restrict dst)
|
|
_GL_ARG_NONNULL ((2, 3)));
|
|
# endif
|
|
_GL_CXXALIAS_SYS (inet_pton, int,
|
|
(int af, const char *restrict src, void *restrict dst));
|
|
_GL_CXXALIASWARN (inet_pton);
|
|
#elif defined GNULIB_POSIXCHECK
|
|
# undef inet_pton
|
|
# if HAVE_RAW_DECL_INET_PTON
|
|
_GL_WARN_ON_USE (inet_pton, "inet_pton is unportable - "
|
|
"use gnulib module inet_pton for portability");
|
|
# endif
|
|
#endif
|
|
|
|
|
|
#endif /* _GL_ARPA_INET_H */
|
|
#endif /* _GL_ARPA_INET_H */
|