| 46 | } |
| 47 | |
| 48 | type skipTLSDialer struct { |
| 49 | dialer *net.Dialer |
| 50 | skipTLS bool |
| 51 | } |
| 52 | |
| 53 | func (sd *skipTLSDialer) Dial(network, address string) (net.Conn, error) { |
| 54 | return sd.dialer.Dial(network, address) |
nothing calls this directly
no outgoing calls
no test coverage detected