diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2020-05-29 15:06:33 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2020-05-29 15:06:33 +0300 |
commit | 7d41fd85b8d6679335798740ce9bbae7586ae649 (patch) | |
tree | 0256af8785c4327baf6b21088e5b9ed0e8903653 /src/http/v3/ngx_http_v3_module.c | |
parent | 25f5ab5e2d609a355bb2cd5e475cd1186e921d0c (diff) | |
download | nginx-7d41fd85b8d6679335798740ce9bbae7586ae649.tar.gz nginx-7d41fd85b8d6679335798740ce9bbae7586ae649.zip |
QUIC draft-28 transport parameters support.
Draft-27 and draft-28 support can now be enabled interchangeably,
it's based on the compile-time macro NGX_QUIC_DRAFT_VERSION.
Diffstat (limited to 'src/http/v3/ngx_http_v3_module.c')
-rw-r--r-- | src/http/v3/ngx_http_v3_module.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/http/v3/ngx_http_v3_module.c b/src/http/v3/ngx_http_v3_module.c index 434b7e73d..550b706da 100644 --- a/src/http/v3/ngx_http_v3_module.c +++ b/src/http/v3/ngx_http_v3_module.c @@ -245,7 +245,9 @@ ngx_http_v3_create_srv_conf(ngx_conf_t *cf) /* * set by ngx_pcalloc(): - * v3cf->quic.original_connection_id = 0; + * v3cf->quic.original_dcid = { 0, NULL }; + * v3cf->quic.initial_scid = { 0, NULL }; + * v3cf->quic.retry_scid = { 0, NULL }; * v3cf->quic.stateless_reset_token = { 0 } * conf->quic.preferred_address = NULL */ |