diff options
| author | Vladimir Homutov <vl@nginx.com> | 2022-01-23 21:29:36 +0300 |
|---|---|---|
| committer | Vladimir Homutov <vl@nginx.com> | 2022-01-23 21:29:36 +0300 |
| commit | 67b9f081d0510fe1132c61561a0d1405506c11c0 (patch) | |
| tree | 10c7a62e46600e34814b18ccfb17e66408cd97a8 /src | |
| parent | a816af6e1be93ad026b179f8c35c720b891b1e65 (diff) | |
| download | nginx-67b9f081d0510fe1132c61561a0d1405506c11c0.tar.gz nginx-67b9f081d0510fe1132c61561a0d1405506c11c0.tar.bz2 | |
QUIC: avoid logging error in case of version negotiation.
Previously, "early error" message was logged in this case.
Diffstat (limited to 'src')
| -rw-r--r-- | src/event/quic/ngx_event_quic_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/quic/ngx_event_quic_output.c b/src/event/quic/ngx_event_quic_output.c index d4b079125..bf43f7883 100644 --- a/src/event/quic/ngx_event_quic_output.c +++ b/src/event/quic/ngx_event_quic_output.c @@ -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; } |
