Files
httprunner/pkg/gadb/utils.go
2025-02-06 11:03:41 +08:00

10 lines
109 B
Go

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