1
0
mirror of https://github.com/strongdm/comply synced 2024-08-27 17:56:48 +00:00
comply/vendor/golang.org/x/net/proxy/direct.go

32 lines
832 B
Go
Raw Permalink Normal View History

2018-05-15 21:13:11 +00:00
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package proxy
import (
"context"
2018-05-15 21:13:11 +00:00
"net"
)
type direct struct{}
// Direct implements Dialer by making network connections directly using net.Dial or net.DialContext.
2018-05-15 21:13:11 +00:00
var Direct = direct{}
var (
_ Dialer = Direct
_ ContextDialer = Direct
)
// Dial directly invokes net.Dial with the supplied parameters.
2018-05-15 21:13:11 +00:00
func (direct) Dial(network, addr string) (net.Conn, error) {
return net.Dial(network, addr)
}
// DialContext instantiates a net.Dialer and invokes its DialContext receiver with the supplied parameters.
func (direct) DialContext(ctx context.Context, network, addr string) (net.Conn, error) {
var d net.Dialer
return d.DialContext(ctx, network, addr)
}