]> git.kaiwu.me - nginx.git/commitdiff
Core: reduced diff to the default branch.
authorSergey Kandaurov <pluknet@nginx.com>
Fri, 13 Nov 2020 15:11:27 +0000 (15:11 +0000)
committerSergey Kandaurov <pluknet@nginx.com>
Fri, 13 Nov 2020 15:11:27 +0000 (15:11 +0000)
It became feasible to reduce after feec2cc762f6 that
removes ngx_quic_connection_t from ngx_connection_s.

src/core/ngx_connection.h

index 3ac6205e26b24b4d4b1b240aee89a047906af875..edc1ccbc292975ba4350bc551aa7829abaf1955b 100644 (file)
@@ -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;