diff options
author | Roman Arutyunyan <arut@nginx.com> | 2020-11-10 19:40:00 +0000 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2020-11-10 19:40:00 +0000 |
commit | 2fd31c8959fbae8f069d09b61f339358214e75d1 (patch) | |
tree | 0ab95bedaf0ba65c7f0cf1d1382efd24e18a0bfa /src/core | |
parent | 4b41b1478f108800d30bff981204bb0b85fc809e (diff) | |
download | nginx-2fd31c8959fbae8f069d09b61f339358214e75d1.tar.gz nginx-2fd31c8959fbae8f069d09b61f339358214e75d1.zip |
QUIC: renamed c->qs to c->quic.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/ngx_connection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_connection.h b/src/core/ngx_connection.h index a075d84a3..3ac6205e2 100644 --- a/src/core/ngx_connection.h +++ b/src/core/ngx_connection.h @@ -151,7 +151,7 @@ struct ngx_connection_s { ngx_proxy_protocol_t *proxy_protocol; #if (NGX_QUIC || NGX_COMPAT) - ngx_quic_stream_t *qs; + ngx_quic_stream_t *quic; #endif #if (NGX_SSL || NGX_COMPAT) |