diff options
Diffstat (limited to 'posix/getconf.c')
-rw-r--r-- | posix/getconf.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/posix/getconf.c b/posix/getconf.c index db6acc4..c2c0d3f 100644 --- a/posix/getconf.c +++ b/posix/getconf.c @@ -1004,6 +1004,13 @@ static const struct conf vars[] = { "RAW_SOCKETS", _SC_RAW_SOCKETS, SYSCONF }, #endif +#ifdef _SC_IPV6 + { "_POSIX_IPV6", _SC_IPV6, SYSCONF }, +#endif +#ifdef _SC_RAW_SOCKETS + { "_POSIX_RAW_SOCKETS", _SC_RAW_SOCKETS, SYSCONF }, +#endif + { NULL, 0, SYSCONF } }; |