You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code processing incoming handshake packets in ConnectionState::handle_packet() should check that the version in the Initial packet matches what's supported per QUIC_VERSION. If it doesn't match, it should queue an appropriate response using ConnectionState::build_long_packet() (or something similar if version negotiation has slightly different needs).
The text was updated successfully, but these errors were encountered:
# This is the 1st commit message:
quinn-rs#2008: Make max_idle_timeout negotiation commutative.
# This is the commit message quinn-rs#2:
quinn-rs#2008: Store negotiated idle_timeout as Duration.
# This is the commit message quinn-rs#3:
quinn-rs#2009: Address code review feedback.
This is explained in section 6.2 of the draft 11 transport spec:
https://tools.ietf.org/html/draft-ietf-quic-transport-11#section-6.2
The code processing incoming handshake packets in
ConnectionState::handle_packet()
should check that theversion
in theInitial
packet matches what's supported perQUIC_VERSION
. If it doesn't match, it should queue an appropriate response usingConnectionState::build_long_packet()
(or something similar if version negotiation has slightly different needs).The text was updated successfully, but these errors were encountered: