Receipt of CONNECTION_CLOSE in 0-RTT is permitted in draft-28.

This commit is contained in:
Sergey Kandaurov 2020-06-05 13:20:02 +03:00
parent 894a1af249
commit 250ff7c03c

View file

@ -1069,8 +1069,13 @@ ngx_quic_frame_allowed(ngx_quic_header_t *pkt, ngx_uint_t frame_type)
/* RETIRE_CONNECTION_ID */ 0x3,
/* PATH_CHALLENGE */ 0x3,
/* PATH_RESPONSE */ 0x3,
#if (NGX_QUIC_DRAFT_VERSION >= 28)
/* CONNECTION_CLOSE */ 0xF,
/* CONNECTION_CLOSE2 */ 0x3,
#else
/* CONNECTION_CLOSE */ 0xD,
/* CONNECTION_CLOSE2 */ 0x1,
#endif
/* HANDSHAKE_DONE */ 0x0, /* only sent by server */
};