modernc.org/cc@v1.0.1/v2/headers/linux_386/usr/include/arpa/inet.h (about)

     1  /* Copyright (C) 1997-2018 Free Software Foundation, Inc.
     2     This file is part of the GNU C Library.
     3  
     4     The GNU C Library is free software; you can redistribute it and/or
     5     modify it under the terms of the GNU Lesser General Public
     6     License as published by the Free Software Foundation; either
     7     version 2.1 of the License, or (at your option) any later version.
     8  
     9     The GNU C Library is distributed in the hope that it will be useful,
    10     but WITHOUT ANY WARRANTY; without even the implied warranty of
    11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    12     Lesser General Public License for more details.
    13  
    14     You should have received a copy of the GNU Lesser General Public
    15     License along with the GNU C Library; if not, see
    16     <http://www.gnu.org/licenses/>.  */
    17  
    18  #ifndef _ARPA_INET_H
    19  #define	_ARPA_INET_H	1
    20  
    21  #include <features.h>
    22  #include <netinet/in.h>		/* To define `struct in_addr'.  */
    23  
    24  /* Type for length arguments in socket calls.  */
    25  #ifndef __socklen_t_defined
    26  typedef __socklen_t socklen_t;
    27  # define __socklen_t_defined
    28  #endif
    29  
    30  __BEGIN_DECLS
    31  /* Convert Internet host address from numbers-and-dots notation in CP
    32     into binary data in network byte order.  */
    33  extern in_addr_t inet_addr(const char *__cp) __THROW;
    34  
    35  /* Return the local host address part of the Internet address in IN.  */
    36  extern in_addr_t inet_lnaof(struct in_addr __in) __THROW;
    37  
    38  /* Make Internet host address in network byte order by combining the
    39     network number NET with the local address HOST.  */
    40  extern struct in_addr inet_makeaddr(in_addr_t __net, in_addr_t __host) __THROW;
    41  
    42  /* Return network number part of the Internet address IN.  */
    43  extern in_addr_t inet_netof(struct in_addr __in) __THROW;
    44  
    45  /* Extract the network number in network byte order from the address
    46     in numbers-and-dots natation starting at CP.  */
    47  extern in_addr_t inet_network(const char *__cp) __THROW;
    48  
    49  /* Convert Internet number in IN to ASCII representation.  The return value
    50     is a pointer to an internal array containing the string.  */
    51  extern char *inet_ntoa(struct in_addr __in) __THROW;
    52  
    53  /* Convert from presentation format of an Internet number in buffer
    54     starting at CP to the binary network format and store result for
    55     interface type AF in buffer starting at BUF.  */
    56  extern int inet_pton(int __af, const char *__restrict __cp, void *__restrict __buf) __THROW;
    57  
    58  /* Convert a Internet address in binary network format for interface
    59     type AF in buffer starting at CP to presentation form and place
    60     result in buffer of length LEN astarting at BUF.  */
    61  extern const char *inet_ntop(int __af, const void *__restrict __cp, char *__restrict __buf, socklen_t __len) __THROW;
    62  
    63  /* The following functions are not part of XNS 5.2.  */
    64  #ifdef __USE_MISC
    65  /* Convert Internet host address from numbers-and-dots notation in CP
    66     into binary data and store the result in the structure INP.  */
    67  extern int inet_aton(const char *__cp, struct in_addr *__inp) __THROW;
    68  
    69  /* Format a network number NET into presentation format and place result
    70     in buffer starting at BUF with length of LEN bytes.  */
    71  extern char *inet_neta(in_addr_t __net, char *__buf, size_t __len) __THROW;
    72  
    73  /* Convert network number for interface type AF in buffer starting at
    74     CP to presentation format.  The result will specifiy BITS bits of
    75     the number.  */
    76  extern char *inet_net_ntop(int __af, const void *__cp, int __bits, char *__buf, size_t __len) __THROW;
    77  
    78  /* Convert network number for interface type AF from presentation in
    79     buffer starting at CP to network format and store result int
    80     buffer starting at BUF of size LEN.  */
    81  extern int inet_net_pton(int __af, const char *__cp, void *__buf, size_t __len) __THROW;
    82  
    83  /* Convert ASCII representation in hexadecimal form of the Internet
    84     address to binary form and place result in buffer of length LEN
    85     starting at BUF.  */
    86  extern unsigned int inet_nsap_addr(const char *__cp, unsigned char *__buf, int __len) __THROW;
    87  
    88  /* Convert internet address in binary form in LEN bytes starting at CP
    89     a presentation form and place result in BUF.  */
    90  extern char *inet_nsap_ntoa(int __len, const unsigned char *__cp, char *__buf) __THROW;
    91  #endif
    92  
    93  __END_DECLS
    94  #endif				/* arpa/inet.h */