mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-06 05:27:36 +03:00
fix: allow fallback to old tls version
This commit is contained in:
parent
5ce39b85e6
commit
227c44e79f
2 changed files with 6 additions and 6 deletions
|
@ -214,9 +214,9 @@ func (c *Conn) makeClientHello() (*clientHelloMsg, *keySharePrivateKeys, *echCli
|
||||||
|
|
||||||
var ech *echClientContext
|
var ech *echClientContext
|
||||||
if c.config.EncryptedClientHelloConfigList != nil {
|
if c.config.EncryptedClientHelloConfigList != nil {
|
||||||
if c.config.MinVersion != 0 && c.config.MinVersion < VersionTLS13 {
|
// if c.config.MinVersion != 0 && c.config.MinVersion < VersionTLS13 {
|
||||||
return nil, nil, nil, errors.New("tls: MinVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated")
|
// return nil, nil, nil, errors.New("tls: MinVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated")
|
||||||
}
|
// }
|
||||||
if c.config.MaxVersion != 0 && c.config.MaxVersion <= VersionTLS12 {
|
if c.config.MaxVersion != 0 && c.config.MaxVersion <= VersionTLS12 {
|
||||||
return nil, nil, nil, errors.New("tls: MaxVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated")
|
return nil, nil, nil, errors.New("tls: MaxVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated")
|
||||||
}
|
}
|
||||||
|
|
|
@ -353,9 +353,9 @@ func (c *Conn) makeClientHelloForApplyPreset() (*clientHelloMsg, *keySharePrivat
|
||||||
|
|
||||||
var ech *echClientContext
|
var ech *echClientContext
|
||||||
if c.config.EncryptedClientHelloConfigList != nil {
|
if c.config.EncryptedClientHelloConfigList != nil {
|
||||||
if c.config.MinVersion != 0 && c.config.MinVersion < VersionTLS13 {
|
// if c.config.MinVersion != 0 && c.config.MinVersion < VersionTLS13 {
|
||||||
return nil, nil, nil, errors.New("tls: MinVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated")
|
// return nil, nil, nil, errors.New("tls: MinVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated")
|
||||||
}
|
// }
|
||||||
if c.config.MaxVersion != 0 && c.config.MaxVersion <= VersionTLS12 {
|
if c.config.MaxVersion != 0 && c.config.MaxVersion <= VersionTLS12 {
|
||||||
return nil, nil, nil, errors.New("tls: MaxVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated")
|
return nil, nil, nil, errors.New("tls: MaxVersion must be >= VersionTLS13 if EncryptedClientHelloConfigList is populated")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue