set default ICMP delay to 1

This commit is contained in:
Jason
2019-07-19 18:33:01 +08:00
parent 82fcf8c2ab
commit a63b27df0c

View File

@@ -77,7 +77,7 @@ func main() {
args.TunMask = flag.String("tunMask", "255.255.255.0", "TUN interface netmask, it should be a prefixlen (a number) for IPv6 address")
args.TunDns = flag.String("tunDns", "1.1.1.1", "DNS resolvers for TUN interface (Windows Only)")
args.ProxyType = flag.String("proxyType", "socks", "Proxy handler type")
args.DelayICMP = flag.Int("delayICMP", 10, "Delay ICMP packets for a short period of time, in milliseconds")
args.DelayICMP = flag.Int("delayICMP", 1, "Delay ICMP packets for a short period of time, in milliseconds")
args.LogLevel = flag.String("loglevel", "info", "Logging level. (debug, info, warn, error, none)")
flag.Parse()