diff --git a/u_parrots.go b/u_parrots.go index b744ee8..6d34880 100644 --- a/u_parrots.go +++ b/u_parrots.go @@ -427,6 +427,11 @@ func (uconn *UConn) ApplyPreset(p *ClientHelloSpec) error { } grease_extensions_seen += 1 case *SessionTicketExtension: + if session == nil && uconn.config.ClientSessionCache != nil { + cacheKey := clientSessionCacheKey(uconn.RemoteAddr(), uconn.config) + session, _ = uconn.config.ClientSessionCache.Get(cacheKey) + // TODO: use uconn.loadSession(hello.getPrivatePtr()) to support TLS 1.3 PSK-style resumption + } err := uconn.SetSessionState(session) if err != nil { return err