blob: 4c5ad88b1e759060536fcc18cf42570545be9bbf [file] [log] [blame]
Scott Bakered4efab2020-01-13 19:12:25 -08001// Copyright 2011 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package proxy
6
7import (
8 "net"
9)
10
11type direct struct{}
12
13// Direct is a direct proxy: one that makes network connections directly.
14var Direct = direct{}
15
16func (direct) Dial(network, addr string) (net.Conn, error) {
17 return net.Dial(network, addr)
18}