# HG changeset patch # User Sergey Kandaurov # Date 1605280287 0 # Node ID c436681ad8e0a9f97b77be1e7fd7f1b2084807f8 # Parent ad7ca043edf52adc8e1b495737b148a15d814b5c Core: reduced diff to the default branch. It became feasible to reduce after feec2cc762f6 that removes ngx_quic_connection_t from ngx_connection_s. diff --git a/src/core/ngx_connection.h b/src/core/ngx_connection.h --- a/src/core/ngx_connection.h +++ b/src/core/ngx_connection.h @@ -148,17 +148,17 @@ struct ngx_connection_s { socklen_t socklen; ngx_str_t addr_text; - ngx_proxy_protocol_t *proxy_protocol; + ngx_proxy_protocol_t *proxy_protocol; #if (NGX_QUIC || NGX_COMPAT) - ngx_quic_stream_t *quic; + ngx_quic_stream_t *quic; #endif #if (NGX_SSL || NGX_COMPAT) - ngx_ssl_connection_t *ssl; + ngx_ssl_connection_t *ssl; #endif - ngx_udp_connection_t *udp; + ngx_udp_connection_t *udp; struct sockaddr *local_sockaddr; socklen_t local_socklen;