From 7d41fd85b8d6679335798740ce9bbae7586ae649 Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Fri, 29 May 2020 15:06:33 +0300 Subject: 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. --- src/http/v3/ngx_http_v3_module.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/http') 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 */ -- cgit