mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
fix the cache verification when InsecureServerNameToVerify
set
This commit is contained in:
parent
7973961f55
commit
f04eb57e6c
1 changed files with 10 additions and 2 deletions
|
@ -310,8 +310,16 @@ func (c *Conn) loadSession(hello *clientHelloMsg) (cacheKey string,
|
|||
return cacheKey, nil, nil, nil, nil
|
||||
}
|
||||
}
|
||||
if err := serverCert.VerifyHostname(c.config.ServerName); err != nil {
|
||||
return cacheKey, nil, nil, nil, nil
|
||||
var dnsName string
|
||||
if len(c.config.InsecureServerNameToVerify) == 0 {
|
||||
dnsName = c.config.ServerName
|
||||
} else if c.config.InsecureServerNameToVerify != "*" {
|
||||
dnsName = c.config.InsecureServerNameToVerify
|
||||
}
|
||||
if len(dnsName) > 0 {
|
||||
if err := serverCert.VerifyHostname(dnsName); err != nil {
|
||||
return cacheKey, nil, nil, nil, nil
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue