diff options
Diffstat (limited to 'include/ifaddrs.h')
-rw-r--r-- | include/ifaddrs.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/ifaddrs.h b/include/ifaddrs.h new file mode 100644 index 000000000..90ab481a3 --- /dev/null +++ b/include/ifaddrs.h @@ -0,0 +1,19 @@ +#ifndef _IFADDRS_H +#include <libc/inet/ifaddrs.h> +#include <stdbool.h> +#include <stdint.h> + +struct in6addrinfo +{ + enum { + in6ai_deprecated = 1, + in6ai_temporary = 2, + in6ai_homeaddress = 4 + } flags; + uint32_t addr[4]; +}; + +extern void __check_pf (bool *seen_ipv4, bool *seen_ipv6) + attribute_hidden; + +#endif /* ifaddrs.h */ |