Improve socksaddr

This commit is contained in:
世界 2022-07-20 21:52:04 +08:00
parent 2af19486bb
commit fd4ec74d5e
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
9 changed files with 34 additions and 47 deletions

View file

@ -113,7 +113,7 @@ func (c *Client) DialContext(ctx context.Context, network string, address M.Sock
if err != nil {
return nil, err
}
if c.version == Version4 && address.Family().IsFqdn() {
if c.version == Version4 && address.IsFqdn() {
tcpAddr, err := net.ResolveTCPAddr(network, address.String())
if err != nil {
tcpConn.Close()