Retro68/gcc/libgo/go/net/hook_unix.go

21 lines
744 B
Go
Raw Normal View History

2017-04-10 11:32:00 +00:00
// 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.
2019-06-02 15:48:37 +00:00
// +build aix darwin dragonfly freebsd hurd js,wasm linux nacl netbsd openbsd solaris
2017-04-10 11:32:00 +00:00
package net
import "syscall"
var (
testHookDialChannel = func() {} // for golang.org/issue/5349
testHookCanceledDial = func() {} // for golang.org/issue/16523
2017-04-10 11:32:00 +00:00
// Placeholders for socket system calls.
2018-12-28 15:30:48 +00:00
socketFunc func(int, int, int) (int, error) = syscall.Socket
connectFunc func(int, syscall.Sockaddr) error = syscall.Connect
listenFunc func(int, int) error = syscall.Listen
getsockoptIntFunc func(int, int, int) (int, error) = syscall.GetsockoptInt
2017-04-10 11:32:00 +00:00
)