diff options
-rw-r--r-- | net/socket/tcp_pinger.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/socket/tcp_pinger.h b/net/socket/tcp_pinger.h index 0b0bd9b..37ad881 100644 --- a/net/socket/tcp_pinger.h +++ b/net/socket/tcp_pinger.h @@ -41,9 +41,9 @@ class TCPPinger { } int Ping() { - // Default is 10 tries, each with a timeout of 1000ms, + // Default is 40 tries, each with a timeout of 250ms, // for a total max timeout of 10 seconds. - return Ping(base::TimeDelta::FromMilliseconds(1000), 10); + return Ping(base::TimeDelta::FromMilliseconds(250), 40); } int Ping(base::TimeDelta tryTimeout, int nTries) { |