mirror of
https://github.com/xvzc/SpoofDPI.git
synced 2024-12-22 14:26:31 +00:00
set default timeout to 2000ms
This commit is contained in:
parent
31a96b1a53
commit
282616a907
@ -176,11 +176,9 @@ func (from *Conn) Serve(to *Conn, proto string, fd string, td string, timeout in
|
||||
proto += " "
|
||||
|
||||
for {
|
||||
if timeout > 0 {
|
||||
from.SetReadDeadline(
|
||||
time.Now().Add(time.Millisecond * time.Duration(timeout)),
|
||||
)
|
||||
}
|
||||
from.SetReadDeadline(
|
||||
time.Now().Add(time.Millisecond * time.Duration(timeout)),
|
||||
)
|
||||
|
||||
buf, err := from.ReadBytes()
|
||||
if err != nil {
|
||||
|
@ -39,11 +39,9 @@ func (p *Proxy) Start() {
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
if p.timeout > 0 {
|
||||
log.Println(fmt.Sprintf("Connection timeout is set to %dms", p.timeout))
|
||||
}
|
||||
log.Println(fmt.Sprintf("Connection timeout is set to %dms", p.timeout))
|
||||
|
||||
log.Println("Created a listener on port", p.Port())
|
||||
log.Println("Created a listener on port", p.Port())
|
||||
|
||||
for {
|
||||
conn, err := l.Accept()
|
||||
|
@ -56,7 +56,7 @@ func ParseArgs() {
|
||||
config.Dns = flag.String("dns", "8.8.8.8", "DNS server")
|
||||
config.Debug = flag.Bool("debug", false, "true | false")
|
||||
config.NoBanner = flag.Bool("no-banner", false, "true | false")
|
||||
config.Timeout = flag.Int("timeout", 0, "timeout in milliseconds")
|
||||
config.Timeout = flag.Int("timeout", 2000, "timeout in milliseconds")
|
||||
|
||||
flag.Var(&allowedHosts, "url", "Bypass DPI only on this url, can be passed multiple times")
|
||||
allowedPattern = flag.String(
|
||||
|
Loading…
Reference in New Issue
Block a user