diff src/event/ngx_event.c @ 8630:279ad36f2f4b quic

QUIC: renamed c->qs to c->quic.
author Roman Arutyunyan <arut@nginx.com>
date Tue, 10 Nov 2020 19:40:00 +0000
parents 0d2b2664b41c
children 05e0988a6898
line wrap: on
line diff
--- a/src/event/ngx_event.c
+++ b/src/event/ngx_event.c
@@ -274,7 +274,7 @@ ngx_handle_read_event(ngx_event_t *rev, 
 
     c = rev->data;
 
-    if (c->qs) {
+    if (c->quic) {
 
         if (!rev->active && !rev->ready) {
             rev->active = 1;
@@ -368,7 +368,7 @@ ngx_handle_write_event(ngx_event_t *wev,
 
 #if (NGX_QUIC)
 
-    if (c->qs) {
+    if (c->quic) {
 
         if (!wev->active && !wev->ready) {
             wev->active = 1;
@@ -953,7 +953,7 @@ ngx_send_lowat(ngx_connection_t *c, size
     int  sndlowat;
 
 #if (NGX_QUIC)
-    if (c->qs) {
+    if (c->quic) {
         return NGX_OK;
     }
 #endif