From 36694afe0e28eff7d8fb3d6f012d249b73a9ac77 Mon Sep 17 00:00:00 2001 From: Diogo Sousa Date: Tue, 9 Apr 2013 20:54:22 +0100 Subject: Don't send ping's to the server if we are still waiting for a pong. If the server don't respond in 30s just report the lag as +30s. This fixes the bug where hexchat reset the lag meter every time a ping was sent and no pong was received. --- src/common/hexchat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/hexchat.c') diff --git a/src/common/hexchat.c b/src/common/hexchat.c index aa18911e..4bea0742 100644 --- a/src/common/hexchat.c +++ b/src/common/hexchat.c @@ -281,7 +281,7 @@ lag_check (void) NULL, NULL, 0); if (prefs.hex_net_auto_reconnect) serv->auto_reconnect (serv, FALSE, -1); - } else + } else if (!serv->lag_sent) { snprintf (tbuf, sizeof (tbuf), "LAG%lu", tim); serv->p_ping (serv, "", tbuf); -- cgit 1.4.1