comparison src/http/ngx_http.c @ 8964:ad67fcc30567 quic

HTTP/3: removed useless warning regarding OpenSSL library. After 0e6528551f26, it became impossible to run into this path.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 13 Jan 2022 15:57:15 +0300
parents be08b858086a
children c2f5d79cde64
comparison
equal deleted inserted replaced
8963:5acd0d89d8c2 8964:ad67fcc30567
1360 &lsopt->addr_text); 1360 &lsopt->addr_text);
1361 } 1361 }
1362 1362
1363 #endif 1363 #endif
1364 1364
1365 #if (NGX_HTTP_V3 && !defined NGX_QUIC)
1366
1367 if (lsopt->http3) {
1368 ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
1369 "nginx was built with OpenSSL that lacks QUIC "
1370 "support, HTTP/3 is not enabled for %V",
1371 &lsopt->addr_text);
1372 }
1373
1374 #endif
1375
1376 addr = ngx_array_push(&port->addrs); 1365 addr = ngx_array_push(&port->addrs);
1377 if (addr == NULL) { 1366 if (addr == NULL) {
1378 return NGX_ERROR; 1367 return NGX_ERROR;
1379 } 1368 }
1380 1369