aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/net/hook.go
blob: 9ab34c0e36faf6d0451e9c4869c1eca7bb2411fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2015 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 net

var (
	testHookDialTCP      = dialTCP
	testHookHostsPath    = "/etc/hosts"
	testHookLookupIP     = func(fn func(string) ([]IPAddr, error), host string) ([]IPAddr, error) { return fn(host) }
	testHookSetKeepAlive = func() {}
)