fix: Unhandled dns resolve failure error

This commit is contained in:
Skyxim 2022-08-13 16:47:24 +08:00
parent dfeb901417
commit 32fc990c68

View File

@ -215,6 +215,10 @@ func concurrentDualStackDialContext(ctx context.Context, network, address string
ips, err = resolver.ResolveAllIPProxyServerHost(host)
}
if err != nil {
return nil, err
}
return concurrentDialContext(ctx, network, ips, port, opt)
}