mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 03:57:36 +03:00
Replace InsecureSkipServerNameVerify with InsecureServerNameToVerify (#161)
* Replace InsecureSkipServerNameVerify with InsecureServerNameToVerify * Replace "any" with "*"
This commit is contained in:
parent
d139a4a652
commit
a4ca4dd835
4 changed files with 45 additions and 44 deletions
|
@ -377,9 +377,8 @@ func (c *UConn) clientHandshake(ctx context.Context) (err error) {
|
|||
// [uTLS section begins]
|
||||
// don't make new ClientHello, use hs.hello
|
||||
// preserve the checks from beginning and end of makeClientHello()
|
||||
skipServerNameVerify := c.config.InsecureSkipVerify || c.config.InsecureSkipServerNameVerify
|
||||
if len(c.config.ServerName) == 0 && !skipServerNameVerify {
|
||||
return errors.New("tls: at least one of ServerName, InsecureSkipVerify or InsecureSkipServerNameVerify must be specified in the tls.Config")
|
||||
if len(c.config.ServerName) == 0 && !c.config.InsecureSkipVerify && len(c.config.InsecureServerNameToVerify) == 0 {
|
||||
return errors.New("tls: at least one of ServerName, InsecureSkipVerify or InsecureServerNameToVerify must be specified in the tls.Config")
|
||||
}
|
||||
|
||||
nextProtosLength := 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue