changeset 8776:901126931bd5 quic

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".
author Vladimir Homutov <vl@nginx.com>
date Thu, 06 May 2021 12:36:14 +0300
parents 6e2c23481abb
children d5f93733c17d
files src/event/quic/ngx_event_quic.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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 */