From 90de2658f9672480cfe7cbd34b02bc4bd4febbd5 Mon Sep 17 00:00:00 2001 From: guessi Date: Sun, 10 May 2020 16:11:37 +0800 Subject: [PATCH] Shorten dialerTimeout from 10s to 5s --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index c29e196..b686c6f 100644 --- a/config.go +++ b/config.go @@ -3,7 +3,7 @@ package main import "time" const ( - dialerTimeout = 10 * time.Second + dialerTimeout = 5 * time.Second defaultPort = 443 protocol = "tcp" )