Dial connects to the given address via the proxy.
(network, addr string)
| 161 | type proxy_Dialer interface { |
| 162 | // Dial connects to the given address via the proxy. |
| 163 | Dial(network, addr string) (c net.Conn, err error) |
| 164 | } |
| 165 | |
| 166 | // Auth contains authentication parameters that specific Dialers may require. |
no outgoing calls