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
When the HandshakeSettings don't include ticketKeys, the server will behave in an non-compliant way: if the client sends the session_ticket extension, the server will respond with on in the ServerHello, but then will not send a NewSessionTicket. That's a RFC violation.
setting ticket_count to 0 or setting ticketKeys to an empty array should be sufficient to disable support for session tickets on server side and thus stop the server from echoing the extension.
The text was updated successfully, but these errors were encountered:
When the HandshakeSettings don't include
ticketKeys
, the server will behave in an non-compliant way: if the client sends thesession_ticket
extension, the server will respond with on in the ServerHello, but then will not send a NewSessionTicket. That's a RFC violation.setting
ticket_count
to 0 or settingticketKeys
to an empty array should be sufficient to disable support for session tickets on server side and thus stop the server from echoing the extension.The text was updated successfully, but these errors were encountered: