diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2016-10-03 15:58:22 +0300 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2016-10-03 15:58:22 +0300 |
commit | a7f80ec354dd470a1da09585f8a74dd73d3ce883 (patch) | |
tree | 9b8b32260024089b71bb1b289494c81fab66f9c1 /src/core/ngx_module.h | |
parent | 2641022229fc7375996cfbbe84ec31e27dd376af (diff) | |
download | nginx-a7f80ec354dd470a1da09585f8a74dd73d3ce883.tar.gz nginx-a7f80ec354dd470a1da09585f8a74dd73d3ce883.zip |
Modules compatibility: http2.
HTTP/2-specific fields in structures are now available unconditionally.
Removed NGX_HTTP_V2 from the signature accordingly.
Diffstat (limited to 'src/core/ngx_module.h')
-rw-r--r-- | src/core/ngx_module.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/ngx_module.h b/src/core/ngx_module.h index 3ac1e437e..e2fbe9cfa 100644 --- a/src/core/ngx_module.h +++ b/src/core/ngx_module.h @@ -158,11 +158,7 @@ #define NGX_MODULE_SIGNATURE_24 "0" #endif -#if (NGX_HTTP_V2) #define NGX_MODULE_SIGNATURE_25 "1" -#else -#define NGX_MODULE_SIGNATURE_25 "0" -#endif #if (NGX_HTTP_GZIP) #define NGX_MODULE_SIGNATURE_26 "1" |