fix: allow TLS 1.3 as min TLS version

however this could be a dirty fix.
This commit is contained in:
Gaukas Wang 2023-06-24 14:50:26 -06:00
parent c785bd3a1e
commit 91193666f8
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D

View file

@ -631,7 +631,7 @@ func (uconn *UConn) SetTLSVers(minTLSVers, maxTLSVers uint16, specExtensions []T
}
}
if minTLSVers < VersionTLS10 || minTLSVers > VersionTLS12 {
if minTLSVers < VersionTLS10 || minTLSVers > VersionTLS13 {
return fmt.Errorf("uTLS does not support 0x%X as min version", minTLSVers)
}