| 355 | } |
| 356 | |
| 357 | type testSkipTLSDialer struct { |
| 358 | dialer *net.Dialer |
| 359 | skipTLS bool |
| 360 | } |
| 361 | |
| 362 | func (sd *testSkipTLSDialer) Dial(network, address string) (net.Conn, error) { |
| 363 | return sd.dialer.Dial(network, address) |
nothing calls this directly
no outgoing calls
no test coverage detected