diff options
| author | Roman Arutyunyan <arut@nginx.com> | 2020-11-10 19:40:00 +0000 |
|---|---|---|
| committer | Roman Arutyunyan <arut@nginx.com> | 2020-11-10 19:40:00 +0000 |
| commit | 2fd31c8959fbae8f069d09b61f339358214e75d1 (patch) | |
| tree | 0ab95bedaf0ba65c7f0cf1d1382efd24e18a0bfa /src/http/ngx_http_request.c | |
| parent | 4b41b1478f108800d30bff981204bb0b85fc809e (diff) | |
| download | nginx-2fd31c8959fbae8f069d09b61f339358214e75d1.tar.gz nginx-2fd31c8959fbae8f069d09b61f339358214e75d1.tar.bz2 | |
QUIC: renamed c->qs to c->quic.
Diffstat (limited to '')
| -rw-r--r-- | src/http/ngx_http_request.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index f33555687..8df43891a 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -330,7 +330,7 @@ ngx_http_init_connection(ngx_connection_t *c) #endif - if (c->qs == NULL) { + if (c->quic == NULL) { c->log->connection = c->number; qcf = ngx_http_get_module_srv_conf(hc->conf_ctx, @@ -339,7 +339,7 @@ ngx_http_init_connection(ngx_connection_t *c) return; } - phc = c->qs->parent->data; + phc = c->quic->parent->data; if (phc->ssl_servername) { hc->ssl_servername = phc->ssl_servername; @@ -2847,7 +2847,7 @@ ngx_http_finalize_connection(ngx_http_request_t *r) #endif #if (NGX_HTTP_QUIC) - if (r->connection->qs) { + if (r->connection->quic) { ngx_http_close_request(r, 0); return; } @@ -3064,7 +3064,7 @@ ngx_http_test_reading(ngx_http_request_t *r) #if (NGX_HTTP_QUIC) - if (c->qs) { + if (c->quic) { if (c->read->error) { err = 0; goto closed; |
