1 #ifndef _IFADDRS_H 2 #include <inet/ifaddrs.h> 3 4 # ifndef _ISOMAC 5 6 #include <stdbool.h> 7 #include <stdint.h> 8 9 libc_hidden_proto (getifaddrs) 10 libc_hidden_proto (freeifaddrs) 11 12 extern int __getifaddrs (struct ifaddrs **__ifap); 13 libc_hidden_proto (__getifaddrs) 14 extern void __freeifaddrs (struct ifaddrs *__ifa); 15 libc_hidden_proto (__freeifaddrs) 16 17 struct 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 29 extern void __check_pf (bool *seen_ipv4, bool *seen_ipv6, 30 struct in6addrinfo **in6ai, size_t *in6ailen) 31 attribute_hidden; 32 extern void __free_in6ai (struct in6addrinfo *in6ai) attribute_hidden; 33 extern 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) 38 extern uint32_t __bump_nl_timestamp (void) attribute_hidden; 39 #endif 40 41 # endif /* !_ISOMAC */ 42 #endif /* ifaddrs.h */ 43