aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVladimir Homutov <vl@nginx.com>2020-10-26 00:34:24 +0300
committerVladimir Homutov <vl@nginx.com>2020-10-26 00:34:24 +0300
commit1d9e9a1a29aeaac922d80019f41879a17600322d (patch)
tree4aaccdd84e159c1d9afc97fd2efbd5348e554811 /src
parent0946f8c3ca9300ddcd2b6b2bd4945c5f620ac391 (diff)
downloadnginx-1d9e9a1a29aeaac922d80019f41879a17600322d.tar.gz
nginx-1d9e9a1a29aeaac922d80019f41879a17600322d.zip
QUIC: added logging of a declined packet without retry token.
Diffstat (limited to 'src')
-rw-r--r--src/event/ngx_event_quic.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/event/ngx_event_quic.c b/src/event/ngx_event_quic.c
index 5092f0343..5e19f33c4 100644
--- a/src/event/ngx_event_quic.c
+++ b/src/event/ngx_event_quic.c
@@ -1984,6 +1984,8 @@ ngx_quic_process_packet(ngx_connection_t *c, ngx_quic_conf_t *conf,
}
if (!pkt->token.len) {
+ ngx_log_error(NGX_LOG_INFO, c->log, 0,
+ "quic discard retry packet without token");
return NGX_DECLINED;
}