mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
fix: allow TLS 1.3 as min TLS version
however this could be a dirty fix.
This commit is contained in:
parent
c785bd3a1e
commit
91193666f8
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue