mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
86e0544901
* posix/tst-rfc3484.c: Update fake __check_pf implementation. * posix/tst-rfc3484-2.c: Likewise.
23 lines
417 B
C
23 lines
417 B
C
#ifndef _IFADDRS_H
|
|
#include <inet/ifaddrs.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
libc_hidden_proto (getifaddrs)
|
|
libc_hidden_proto (freeifaddrs)
|
|
|
|
struct in6addrinfo
|
|
{
|
|
enum {
|
|
in6ai_deprecated = 1,
|
|
in6ai_temporary = 2
|
|
} flags;
|
|
uint32_t addr[4];
|
|
};
|
|
|
|
extern void __check_pf (bool *seen_ipv4, bool *seen_ipv6,
|
|
struct in6addrinfo **in6ai, size_t *in6ailen)
|
|
attribute_hidden;
|
|
|
|
#endif /* ifaddrs.h */
|