QUIC: modified HTTP version test.

The new condition produces smaller diff to the default branch and is similar to
HTTP/2 case.
This commit is contained in:
Roman Arutyunyan 2022-01-12 11:54:39 +03:00
parent d98314233f
commit 668f43ca38
1 changed files with 8 additions and 1 deletions

View File

@ -942,7 +942,14 @@ ngx_http_test_expect(ngx_http_request_t *r)
if (r->expect_tested
|| r->headers_in.expect == NULL
|| r->http_version != NGX_HTTP_VERSION_11)
|| r->http_version < NGX_HTTP_VERSION_11
#if (NGX_HTTP_V2)
|| r->stream != NULL
#endif
#if (NGX_HTTP_V3)
|| r->connection->quic != NULL
#endif
)
{
return NGX_OK;
}