fix: connection state locked never called (#178)

Implication is ALPS peer settings are never copied to the connection state.
This commit is contained in:
Blake Byrnes 2023-04-01 21:47:17 -04:00 committed by GitHub
parent 7aa684a354
commit 8dc35bef36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1551,6 +1551,9 @@ func (c *Conn) connectionStateLocked() ConnectionState {
} else {
state.ekm = c.ekm
}
// [UTLS SECTION START]
c.utlsConnectionStateLocked(&state)
// [UTLS SECTION END]
return state
}