diff src/http/v3/ngx_http_v3.h @ 8630:279ad36f2f4b quic

QUIC: renamed c->qs to c->quic.
author Roman Arutyunyan <arut@nginx.com>
date Tue, 10 Nov 2020 19:40:00 +0000
parents e0947c952d43
children 1efee5e4194c
line wrap: on
line diff
--- a/src/http/v3/ngx_http_v3.h
+++ b/src/http/v3/ngx_http_v3.h
@@ -77,11 +77,11 @@
 
 #define ngx_http_v3_get_module_srv_conf(c, module)                            \
     ngx_http_get_module_srv_conf(                                             \
-             ((ngx_http_v3_connection_t *) c->qs->parent->data)->hc.conf_ctx, \
-             module)
+           ((ngx_http_v3_connection_t *) c->quic->parent->data)->hc.conf_ctx, \
+           module)
 
 #define ngx_http_v3_finalize_connection(c, code, reason)                      \
-    ngx_quic_finalize_connection(c->qs->parent, code, reason)
+    ngx_quic_finalize_connection(c->quic->parent, code, reason)
 
 
 typedef struct {