mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +00:00
37 lines
800 B
Go
37 lines
800 B
Go
|
// 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 (
|
||
|
// Placeholders for saving original socket system calls.
|
||
|
origSocket = socketFunc
|
||
|
origClosesocket = closeFunc
|
||
|
origConnect = connectFunc
|
||
|
origConnectEx = connectExFunc
|
||
|
origListen = listenFunc
|
||
|
)
|
||
|
|
||
|
func installTestHooks() {
|
||
|
socketFunc = sw.Socket
|
||
|
closeFunc = sw.Closesocket
|
||
|
connectFunc = sw.Connect
|
||
|
connectExFunc = sw.ConnectEx
|
||
|
listenFunc = sw.Listen
|
||
|
}
|
||
|
|
||
|
func uninstallTestHooks() {
|
||
|
socketFunc = origSocket
|
||
|
closeFunc = origClosesocket
|
||
|
connectFunc = origConnect
|
||
|
connectExFunc = origConnectEx
|
||
|
listenFunc = origListen
|
||
|
}
|
||
|
|
||
|
func forceCloseSockets() {
|
||
|
for s := range sw.Sockets() {
|
||
|
closeFunc(s)
|
||
|
}
|
||
|
}
|