diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2020-02-28 13:09:51 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2020-02-28 13:09:51 +0300 |
commit | e92cb24f40b865e3cc5b9f0993e328e4f0642e0f (patch) | |
tree | d1dc4924b24bb6365add78c80c0ddabbd819b728 /src/http/ngx_http_core_module.h | |
parent | 84510c9f1f06f9794e482972e23cdfc139ad7247 (diff) | |
download | nginx-e92cb24f40b865e3cc5b9f0993e328e4f0642e0f.tar.gz nginx-e92cb24f40b865e3cc5b9f0993e328e4f0642e0f.zip |
HTTP UDP layer, QUIC support autotest.
Diffstat (limited to 'src/http/ngx_http_core_module.h')
-rw-r--r-- | src/http/ngx_http_core_module.h | 2 |
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 f5434cc51..9f26b5794 100644 --- a/src/http/ngx_http_core_module.h +++ b/src/http/ngx_http_core_module.h @@ -86,6 +86,7 @@ typedef struct { int backlog; int rcvbuf; int sndbuf; + int type; #if (NGX_HAVE_SETFIB) int setfib; #endif @@ -266,6 +267,7 @@ typedef struct { typedef struct { ngx_int_t family; + ngx_int_t type; in_port_t port; ngx_array_t addrs; /* array of ngx_http_conf_addr_t */ } ngx_http_conf_port_t; |