aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_core_module.h
diff options
context:
space:
mode:
authorSergey Kandaurov <pluknet@nginx.com>2020-02-28 13:09:51 +0300
committerSergey Kandaurov <pluknet@nginx.com>2020-02-28 13:09:51 +0300
commit26ac1c73f0fe90c77cbad84a6b4ef5712e35ba52 (patch)
tree9860cd3f43f9fae5b3d5656b273b4910c504835e /src/http/ngx_http_core_module.h
parente92cb24f40b865e3cc5b9f0993e328e4f0642e0f (diff)
downloadnginx-26ac1c73f0fe90c77cbad84a6b4ef5712e35ba52.tar.gz
nginx-26ac1c73f0fe90c77cbad84a6b4ef5712e35ba52.zip
Initial QUIC support in http.
Diffstat (limited to 'src/http/ngx_http_core_module.h')
-rw-r--r--src/http/ngx_http_core_module.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/ngx_http_core_module.h b/src/http/ngx_http_core_module.h
index 9f26b5794..25327b2f4 100644
--- a/src/http/ngx_http_core_module.h
+++ b/src/http/ngx_http_core_module.h
@@ -75,6 +75,7 @@ typedef struct {
unsigned wildcard:1;
unsigned ssl:1;
unsigned http2:1;
+ unsigned http3:1;
#if (NGX_HAVE_INET6)
unsigned ipv6only:1;
#endif
@@ -238,6 +239,7 @@ struct ngx_http_addr_conf_s {
unsigned ssl:1;
unsigned http2:1;
+ unsigned http3:1;
unsigned proxy_protocol:1;
};