mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
Replace "any" with "*"
This commit is contained in:
parent
219cf1da0e
commit
d9ca257396
2 changed files with 2 additions and 2 deletions
|
@ -658,7 +658,7 @@ type Config struct {
|
|||
|
||||
// InsecureServerNameToVerify is used to verify the hostname on the returned
|
||||
// certificates. It is intended to use with spoofed ServerName.
|
||||
// If InsecureServerNameToVerify is "any", crypto/tls will do normal
|
||||
// If InsecureServerNameToVerify is "*", crypto/tls will do normal
|
||||
// certificate validation but ignore certifacate's DNSName.
|
||||
//
|
||||
// This field is ignored when InsecureSkipVerify is true.
|
||||
|
|
|
@ -886,7 +886,7 @@ func (c *Conn) verifyServerCertificate(certificates [][]byte) error {
|
|||
|
||||
if len(c.config.InsecureServerNameToVerify) == 0 {
|
||||
opts.DNSName = c.config.ServerName
|
||||
} else if c.config.InsecureServerNameToVerify != "any" {
|
||||
} else if c.config.InsecureServerNameToVerify != "*" {
|
||||
opts.DNSName = c.config.InsecureServerNameToVerify
|
||||
}
|
||||
// [UTLS SECTION END]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue