From: Vladimir Homutov Date: Thu, 6 May 2021 09:36:14 +0000 (+0300) Subject: QUIC: consider NEW_CONNECTION_ID a probing frame. X-Git-Tag: release-1.25.0~4^2~333 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/postgres_fdw.c?a=commitdiff_plain;h=59fe6ca97ae66972744cb68a3f29ac7f8d0a3002;p=nginx.git 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 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 */