()
| 198 | } |
| 199 | |
| 200 | func (d *Dialer) netDialer() *net.Dialer { |
| 201 | if d.NetDialer != nil { |
| 202 | return d.NetDialer |
| 203 | } |
| 204 | return new(net.Dialer) |
| 205 | } |
| 206 | |
| 207 | // DialContext connects to the given network address and initiates a TLS |
| 208 | // handshake, returning the resulting TLS connection. |