2025-03-11 09:40:11 +00:00
|
|
|
#ifndef _ARPA_INET_H
|
|
|
|
|
/* Note: _ARPA_INET_H is defined by inet/arpa/inet.h below. */
|
1995-02-18 01:27:10 +00:00
|
|
|
#include <inet/arpa/inet.h>
|
2000-04-04 06:38:32 +00:00
|
|
|
|
2012-02-27 02:32:56 +00:00
|
|
|
#ifndef _ISOMAC
|
2025-03-07 17:16:30 +00:00
|
|
|
/* Declare functions with security checks.
|
|
|
|
|
This needs to be included unconditionally as these definition are needed even
|
|
|
|
|
when fortification is disabled in inet/arpa/inet.h. */
|
|
|
|
|
#include <bits/inet-fortified-decl.h>
|
|
|
|
|
|
2019-01-21 20:26:03 +00:00
|
|
|
/* Variant of inet_aton which rejects trailing garbage. */
|
|
|
|
|
extern int __inet_aton_exact (const char *__cp, struct in_addr *__inp);
|
|
|
|
|
libc_hidden_proto (__inet_aton_exact)
|
2002-08-03 12:09:37 +00:00
|
|
|
|
2025-03-07 13:42:26 +00:00
|
|
|
extern __typeof (inet_ntop) __inet_ntop;
|
|
|
|
|
libc_hidden_proto (__inet_ntop)
|
2025-03-07 17:16:30 +00:00
|
|
|
libc_hidden_proto (__inet_ntop_chk)
|
2025-03-07 13:42:26 +00:00
|
|
|
|
2002-08-03 12:09:37 +00:00
|
|
|
libc_hidden_proto (inet_pton)
|
2014-12-17 18:09:11 +00:00
|
|
|
extern __typeof (inet_pton) __inet_pton;
|
|
|
|
|
libc_hidden_proto (__inet_pton)
|
2025-03-20 17:13:33 +00:00
|
|
|
libc_hidden_proto (__inet_pton_chk)
|
|
|
|
|
|
2014-12-17 18:09:11 +00:00
|
|
|
extern __typeof (inet_makeaddr) __inet_makeaddr;
|
|
|
|
|
libc_hidden_proto (__inet_makeaddr)
|
2002-08-03 12:09:37 +00:00
|
|
|
libc_hidden_proto (inet_netof)
|
2021-07-07 16:33:52 +00:00
|
|
|
extern __typeof (inet_network) __inet_network;
|
|
|
|
|
libc_hidden_proto (__inet_network)
|
2012-02-27 02:32:56 +00:00
|
|
|
#endif
|
2025-03-11 09:40:11 +00:00
|
|
|
#endif
|