mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-10 17:43:00 +08:00
10 lines
109 B
Go
10 lines
109 B
Go
package gadb
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func DisableTimeWait(conn *net.TCPConn) error {
|
|
return conn.SetLinger(0)
|
|
}
|