Latest update - 7572
This commit is contained in:
+1
-1
@@ -6,7 +6,7 @@ TEMP = tmp
|
|||||||
|
|
||||||
CC = cl
|
CC = cl
|
||||||
OBJS = objs.msvc8
|
OBJS = objs.msvc8
|
||||||
OPENSSL = openssl-1.1.1c
|
OPENSSL = openssl-1.1.1d
|
||||||
ZLIB = zlib-1.2.11
|
ZLIB = zlib-1.2.11
|
||||||
PCRE = pcre-8.43
|
PCRE = pcre-8.43
|
||||||
|
|
||||||
|
|||||||
@@ -356,6 +356,11 @@ ngx_http_v2_read_handler(ngx_event_t *rev)
|
|||||||
if (c->close) {
|
if (c->close) {
|
||||||
c->close = 0;
|
c->close = 0;
|
||||||
|
|
||||||
|
if (c->error) {
|
||||||
|
ngx_http_v2_finalize_connection(h2c, 0);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (!h2c->goaway) {
|
if (!h2c->goaway) {
|
||||||
h2c->goaway = 1;
|
h2c->goaway = 1;
|
||||||
|
|
||||||
@@ -515,13 +520,12 @@ ngx_http_v2_send_output_queue(ngx_http_v2_connection_t *h2c)
|
|||||||
ngx_http_core_loc_conf_t *clcf;
|
ngx_http_core_loc_conf_t *clcf;
|
||||||
|
|
||||||
c = h2c->connection;
|
c = h2c->connection;
|
||||||
|
wev = c->write;
|
||||||
|
|
||||||
if (c->error) {
|
if (c->error) {
|
||||||
return NGX_ERROR;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
wev = c->write;
|
|
||||||
|
|
||||||
if (!wev->ready) {
|
if (!wev->ready) {
|
||||||
return NGX_AGAIN;
|
return NGX_AGAIN;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user