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 relay client in the MagicSock sometimes wants to reconnect to be sure the connection is good. When doing so however it does not use the RLS session resumption, here the relevant rustls logs:
rustls::client::hs: 83: No cached session for IpAddress(V4(Ipv4Addr([127, 0, 0, 1])))
rustls::client::hs: 141: Not resuming any session
rustls::client::hs: 532: Sending ClientHello Message
...
This despite the server issuing tickets after the connection is established:
rustls::server::tls13: 1342: sending new ticket HandshakeMessagePayload
It would be good if we could re-use this ticket and setup the subsequent connections faster.
The text was updated successfully, but these errors were encountered:
The relay client in the MagicSock sometimes wants to reconnect to be sure the connection is good. When doing so however it does not use the RLS session resumption, here the relevant rustls logs:
This despite the server issuing tickets after the connection is established:
It would be good if we could re-use this ticket and setup the subsequent connections faster.
The text was updated successfully, but these errors were encountered: