mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-05 04:57:35 +03:00
fix: skip saving if nil cache (#219)
This commit is contained in:
parent
a998534bf3
commit
d74571af51
1 changed files with 5 additions and 1 deletions
|
@ -941,7 +941,11 @@ func (hs *clientHandshakeState) saveSessionTicket() error {
|
||||||
session.secret = hs.masterSecret
|
session.secret = hs.masterSecret
|
||||||
|
|
||||||
cs := &ClientSessionState{ticket: hs.ticket, session: session}
|
cs := &ClientSessionState{ticket: hs.ticket, session: session}
|
||||||
c.config.ClientSessionCache.Put(cacheKey, cs)
|
// [UTLS BEGIN]
|
||||||
|
if c.config.ClientSessionCache != nil { // skip saving session if cache is nil
|
||||||
|
c.config.ClientSessionCache.Put(cacheKey, cs)
|
||||||
|
}
|
||||||
|
// [UTLS END]
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue