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
Currently, when using 0-RTT we use NoValidationQuicTokenHandler on server side which do no validation to avoid retry packet. Should we support token cache and reuse on client side, so we can do address validation on first Initial packet without retry packet?
With a simple investigation, some works need to be done:
quiche C-API should support set token to Initial packet.
quiche should support send NEW_TOKEN frame.
Implement token cache, and maybe add some expiration on token.
The text was updated successfully, but these errors were encountered:
Currently, when using 0-RTT we use
NoValidationQuicTokenHandler
on server side which do no validation to avoidretry packet
. Should we support token cache and reuse on client side, so we can do address validation on first Initial packet withoutretry packet
?With a simple investigation, some works need to be done:
The text was updated successfully, but these errors were encountered: