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 (#194)
Potentially a dirty fix, however so far no test has failed.
This commit is contained in:
parent
c90765da0c
commit
e4fc271fd2
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