mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 03:57:36 +03:00
Fix panic in u_public by never dereferencing (#30)
In order to avoid panics, we make sure that no pointer is dereferenced during transformation between public and private handshake states. Fixes #29
This commit is contained in:
parent
a4f906cb90
commit
32987941eb
3 changed files with 19 additions and 15 deletions
|
@ -567,7 +567,7 @@ func (uconn *UConn) ApplyPreset(p *ClientHelloSpec) error {
|
|||
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
|
||||
// TODO: use uconn.loadSession(hello.getPrivateObj()) to support TLS 1.3 PSK-style resumption
|
||||
}
|
||||
err := uconn.SetSessionState(session)
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue