aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Kandaurov <pluknet@nginx.com>2020-11-13 15:11:27 +0000
committerSergey Kandaurov <pluknet@nginx.com>2020-11-13 15:11:27 +0000
commit375b47efb3558c7871c61f682547c2f3a5fc9992 (patch)
tree5ef71825f9efdb352a9807d1ad0b15065be0c1b4 /src
parentc092a7de0f7473e1d117792eb5b89e68894abdea (diff)
downloadnginx-375b47efb3558c7871c61f682547c2f3a5fc9992.tar.gz
nginx-375b47efb3558c7871c61f682547c2f3a5fc9992.zip
Core: reduced diff to the default branch.
It became feasible to reduce after feec2cc762f6 that removes ngx_quic_connection_t from ngx_connection_s.
Diffstat (limited to 'src')
-rw-r--r--src/core/ngx_connection.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/ngx_connection.h b/src/core/ngx_connection.h
index 3ac6205e2..edc1ccbc2 100644
--- 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;