diff options
author | Roman Arutyunyan <arut@nginx.com> | 2020-11-10 18:38:42 +0000 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2020-11-10 18:38:42 +0000 |
commit | 4b41b1478f108800d30bff981204bb0b85fc809e (patch) | |
tree | f1a126c735acb07d0379e109a84dd6093520707d /src/core | |
parent | 1be6d80089335f5f8635230f50a0ef4173ed9593 (diff) | |
download | nginx-4b41b1478f108800d30bff981204bb0b85fc809e.tar.gz nginx-4b41b1478f108800d30bff981204bb0b85fc809e.zip |
QUIC: got rid of the c->quic field.
Now QUIC connection is accessed via the c->udp field.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/ngx_connection.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/ngx_connection.h b/src/core/ngx_connection.h index 2ce0f153b..a075d84a3 100644 --- a/src/core/ngx_connection.h +++ b/src/core/ngx_connection.h @@ -151,7 +151,6 @@ struct ngx_connection_s { ngx_proxy_protocol_t *proxy_protocol; #if (NGX_QUIC || NGX_COMPAT) - ngx_quic_connection_t *quic; ngx_quic_stream_t *qs; #endif |