# HG changeset patch # User Vladimir Homutov # Date 1620293774 -10800 # Node ID 901126931bd537ed6e8e6ea3b79fb094ac594c21 # Parent 6e2c23481abb59d7027ef1cca055c04843b2ea02 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". diff --git a/src/event/quic/ngx_event_quic.c b/src/event/quic/ngx_event_quic.c --- 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 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 */