comparison src/http/ngx_http_core_module.h @ 6719:cebf5fed00bf

Modules compatibility: removed unneeded IPV6_V6ONLY checks. The IPV6_V6ONLY macro is now checked only while parsing appropriate flag and when using the macro. The ipv6only field in listen structures is always initialized to 1, even if not supported on a given platform. This is expected to prevent a module compiled without IPV6_V6ONLY from accidentally creating dual sockets if loaded into main binary with proper IPV6_V6ONLY support.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 03 Oct 2016 15:58:25 +0300
parents bdf64ae3376b
children 9170240f1241
comparison
equal deleted inserted replaced
6718:bdf64ae3376b 6719:cebf5fed00bf
67 unsigned wildcard:1; 67 unsigned wildcard:1;
68 #if (NGX_HTTP_SSL) 68 #if (NGX_HTTP_SSL)
69 unsigned ssl:1; 69 unsigned ssl:1;
70 #endif 70 #endif
71 unsigned http2:1; 71 unsigned http2:1;
72 #if (NGX_HAVE_INET6 && defined IPV6_V6ONLY) 72 #if (NGX_HAVE_INET6)
73 unsigned ipv6only:1; 73 unsigned ipv6only:1;
74 #endif 74 #endif
75 #if (NGX_HAVE_REUSEPORT) 75 #if (NGX_HAVE_REUSEPORT)
76 unsigned reuseport:1; 76 unsigned reuseport:1;
77 #endif 77 #endif