()
| 672 | } |
| 673 | |
| 674 | func (d *Dialer) netDialer() *net.Dialer { |
| 675 | if d.NetDialer != nil { |
| 676 | return d.NetDialer |
| 677 | } |
| 678 | return new(net.Dialer) |
| 679 | } |
| 680 | |
| 681 | // DialContext connects to the given network address and initiates a TLS |
| 682 | // handshake, returning the resulting TLS connection. |