fix: allow TLS 1.3 as min TLS version (#194)

Potentially a dirty fix, however so far no test has failed.
This commit is contained in:
Gaukas Wang 2023-07-06 15:14:24 -06:00 committed by GitHub
parent c90765da0c
commit e4fc271fd2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)
}