From 59fe6ca97ae66972744cb68a3f29ac7f8d0a3002 Mon Sep 17 00:00:00 2001 From: Vladimir Homutov Date: Thu, 6 May 2021 12:36:14 +0300 Subject: QUIC: consider NEW_CONNECTION_ID a probing frame. According to quic-transport, 9.1: PATH_CHALLENGE, PATH_RESPONSE, NEW_CONNECTION_ID, and PADDING frames are "probing frames", and all other frames are "non-probing frames". --- src/event/quic/ngx_event_quic.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/event/quic/ngx_event_quic.c b/src/event/quic/ngx_event_quic.c index 4088960b7..e19795487 100644 --- a/src/event/quic/ngx_event_quic.c +++ b/src/event/quic/ngx_event_quic.c @@ -1128,6 +1128,7 @@ ngx_quic_handle_frames(ngx_connection_t *c, ngx_quic_header_t *pkt) case NGX_QUIC_FT_PADDING: case NGX_QUIC_FT_PATH_CHALLENGE: case NGX_QUIC_FT_PATH_RESPONSE: + case NGX_QUIC_FT_NEW_CONNECTION_ID: break; /* non-probing frames */ -- cgit