Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2016-10-03 15:58:25 +0300
committerMaxim Dounin <mdounin@mdounin.ru>2016-10-03 15:58:25 +0300
commit0a961a09171fc1de3f3a70aa6b15e29d3882f7f0 (patch)
tree2121db4e34c3ed4d7512fb9d60bda49fb3fc7a43 /src/core/ngx_module.h
parenta7f80ec354dd470a1da09585f8a74dd73d3ce883 (diff)
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.
Diffstat (limited to 'src/core/ngx_module.h')
-rw-r--r--src/core/ngx_module.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/ngx_module.h b/src/core/ngx_module.h
index e2fbe9cfa..4ddab5604 100644
--- a/src/core/ngx_module.h
+++ b/src/core/ngx_module.h
@@ -71,11 +71,7 @@
#define NGX_MODULE_SIGNATURE_8 "0"
#endif
-#if (NGX_HAVE_INET6 && defined IPV6_V6ONLY)
#define NGX_MODULE_SIGNATURE_9 "1"
-#else
-#define NGX_MODULE_SIGNATURE_9 "0"
-#endif
#if (NGX_HAVE_REUSEPORT)
#define NGX_MODULE_SIGNATURE_10 "1"