Fix all-zeroes SessionID (#31)

This commit is contained in:
Rod Hynes 2019-08-12 17:06:06 -04:00 committed by sergeyfrolov
parent 32987941eb
commit 4da6795186

View file

@ -121,7 +121,7 @@ func (uconn *UConn) SetSessionState(session *ClientSessionState) error {
}
}
var sessionID [32]byte
_, err := io.ReadFull(uconn.config.rand(), uconn.HandshakeState.Hello.SessionId)
_, err := io.ReadFull(uconn.config.rand(), sessionID[:])
if err != nil {
return err
}