diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ifaddrs.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/ifaddrs.h b/include/ifaddrs.h index 7d52dc6..50e4c48 100644 --- a/include/ifaddrs.h +++ b/include/ifaddrs.h @@ -10,16 +10,19 @@ struct in6addrinfo { enum { in6ai_deprecated = 1, - in6ai_temporary = 2, - in6ai_homeaddress = 4 + in6ai_homeaddress = 2 } flags:8; uint8_t prefixlen; uint16_t :16; + uint32_t index; uint32_t addr[4]; }; extern void __check_pf (bool *seen_ipv4, bool *seen_ipv6, struct in6addrinfo **in6ai, size_t *in6ailen) attribute_hidden; +extern void __check_native (uint32_t a1_index, int *a1_native, + uint32_t a2_index, int *a2_native) + attribute_hidden; #endif /* ifaddrs.h */ |