diff --git a/u_conn.go b/u_conn.go index 70fec0d..8668533 100644 --- a/u_conn.go +++ b/u_conn.go @@ -576,7 +576,6 @@ func (uconn *UConn) MarshalClientHello() error { inner.supportedSignatureAlgorithms = uconn.HandshakeState.Hello.SupportedSignatureAlgorithms inner.sessionId = uconn.HandshakeState.Hello.SessionId inner.supportedCurves = uconn.HandshakeState.Hello.SupportedCurves - inner.supportedVersions = []uint16{VersionTLS13} // hardcode tls 1.3 as it is the only supported version currently ech.innerHello = inner @@ -761,6 +760,10 @@ func (uconn *UConn) SetTLSVers(minTLSVers, maxTLSVers uint16, specExtensions []T } uconn.HandshakeState.Hello.SupportedVersions = makeSupportedVersions(minTLSVers, maxTLSVers) + if uconn.config.EncryptedClientHelloConfigList == nil { + uconn.config.MinVersion = minTLSVers + uconn.config.MaxVersion = maxTLSVers + } return nil }