(network, address string)
| 304 | } |
| 305 | |
| 306 | func (s *socks5Dialer) Dial(network, address string) (net.Conn, error) { |
| 307 | return s.DialContext(context.Background(), network, address) |
| 308 | } |
| 309 | |
| 310 | func (s *socks5Dialer) DialContext(ctx context.Context, network, address string) (net.Conn, error) { |
| 311 | start := time.Now() |
nothing calls this directly
no test coverage detected