1#ifndef _IFADDRS_H
2#include <inet/ifaddrs.h>
3
4# ifndef _ISOMAC
5
6#include <stdbool.h>
7#include <stdint.h>
8
9libc_hidden_proto (getifaddrs)
10libc_hidden_proto (freeifaddrs)
11
12extern int __getifaddrs (struct ifaddrs **__ifap);
13libc_hidden_proto (__getifaddrs)
14extern void __freeifaddrs (struct ifaddrs *__ifa);
15libc_hidden_proto (__freeifaddrs)
16
17struct in6addrinfo
18{
19 enum {
20 in6ai_deprecated = 1,
21 in6ai_homeaddress = 2
22 } flags:8;
23 uint8_t prefixlen;
24 uint16_t :16;
25 uint32_t index;
26 uint32_t addr[4];
27};
28
29extern void __check_pf (bool *seen_ipv4, bool *seen_ipv6,
30 struct in6addrinfo **in6ai, size_t *in6ailen)
31 attribute_hidden;
32extern void __free_in6ai (struct in6addrinfo *in6ai) attribute_hidden;
33extern void __check_native (uint32_t a1_index, int *a1_native,
34 uint32_t a2_index, int *a2_native)
35 attribute_hidden;
36
37#if IS_IN (nscd)
38extern uint32_t __bump_nl_timestamp (void) attribute_hidden;
39#endif
40
41# endif /* !_ISOMAC */
42#endif /* ifaddrs.h */
43