From 8dc35bef36d8d53c32a9d7e3e1567bbba81d0a38 Mon Sep 17 00:00:00 2001 From: Blake Byrnes Date: Sat, 1 Apr 2023 21:47:17 -0400 Subject: [PATCH] fix: connection state locked never called (#178) Implication is ALPS peer settings are never copied to the connection state. --- conn.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conn.go b/conn.go index 81ef27a..7f6f1f8 100644 --- a/conn.go +++ b/conn.go @@ -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 }