Replace "any" with "*"

This commit is contained in:
RPRX 2023-02-06 02:20:43 +08:00 committed by GitHub
parent 219cf1da0e
commit d9ca257396
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

@ -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]