Latest update - 9010

This commit is contained in:
2023-01-11 18:21:49 +09:00
parent 0e0fa9c04b
commit f9781a4b73
4 changed files with 30 additions and 39 deletions
+2 -2
View File
@@ -274,7 +274,7 @@ ngx_handle_read_event(ngx_event_t *rev, ngx_uint_t flags)
c = rev->data;
if (c->quic) {
return ngx_quic_handle_read_event(rev, flags);
return NGX_OK;
}
#endif
@@ -353,7 +353,7 @@ ngx_handle_write_event(ngx_event_t *wev, size_t lowat)
#if (NGX_QUIC)
if (c->quic) {
return ngx_quic_handle_write_event(wev, lowat);
return NGX_OK;
}
#endif