summaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/net/proxy/direct.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2019-07-06 18:59:20 +0200
committerDimitri Sokolyuk <demon@dim13.org>2019-07-06 18:59:20 +0200
commit5d55bc03e829afdad427f7539c1e08e65b88d409 (patch)
treef1795cdef24801fba731d3a893b473cce61e9af1 /vendor/golang.org/x/net/proxy/direct.go
parentbe263b349d54318de512b25ba2488044c867df0d (diff)
drop vendor
Diffstat (limited to 'vendor/golang.org/x/net/proxy/direct.go')
-rw-r--r--vendor/golang.org/x/net/proxy/direct.go31
1 files changed, 0 insertions, 31 deletions
diff --git a/vendor/golang.org/x/net/proxy/direct.go b/vendor/golang.org/x/net/proxy/direct.go
deleted file mode 100644
index 3d66bde..0000000
--- a/vendor/golang.org/x/net/proxy/direct.go
+++ /dev/null
@@ -1,31 +0,0 @@
-// 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"
- "net"
-)
-
-type direct struct{}
-
-// Direct implements Dialer by making network connections directly using net.Dial or net.DialContext.
-var Direct = direct{}
-
-var (
- _ Dialer = Direct
- _ ContextDialer = Direct
-)
-
-// Dial directly invokes net.Dial with the supplied parameters.
-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)
-}