Files
httprunner/hrp/pkg/gadb/utils.go

10 lines
109 B
Go

package gadb
import (
"net"
)
func DisableTimeWait(conn *net.TCPConn) error {
return conn.SetLinger(0)
}