DialContext instantiates a net.Dialer and invokes its DialContext receiver with the supplied parameters.
(ctx context.Context, network, addr string)
| 26 | |
| 27 | // DialContext instantiates a net.Dialer and invokes its DialContext receiver with the supplied parameters. |
| 28 | func (direct) DialContext(ctx context.Context, network, addr string) (net.Conn, error) { |
| 29 | var d net.Dialer |
| 30 | return d.DialContext(ctx, network, addr) |
| 31 | } |
nothing calls this directly
no test coverage detected