QUIC: avoid logging error in case of version negotiation.

Previously, "early error" message was logged in this case.
This commit is contained in:
Vladimir Homutov 2022-01-23 21:29:36 +03:00
parent a816af6e1b
commit 67b9f081d0

View File

@ -813,7 +813,7 @@ ngx_quic_negotiate_version(ngx_connection_t *c, ngx_quic_header_t *inpkt)
(void) ngx_quic_send(c, buf, len, c->sockaddr, c->socklen);
return NGX_ERROR;
return NGX_DONE;
}