CustomDialer can be used to specify any dialer, not necessarily a *net.Dialer. A CustomDialer may also implement `SkipTLSHandshake() bool` in order to skip the TLS handshake in case not required.
| 298 | // *net.Dialer. A CustomDialer may also implement `SkipTLSHandshake() bool` |
| 299 | // in order to skip the TLS handshake in case not required. |
| 300 | type CustomDialer interface { |
| 301 | Dial(network, address string) (net.Conn, error) |
| 302 | } |
| 303 | |
| 304 | type InProcessConnProvider interface { |
| 305 | InProcessConn() (net.Conn, error) |
no outgoing calls
no test coverage detected