From d64683e7b579a27b2bdc56af5e337e0fa23d2f08 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 8 Oct 2012 20:24:40 -0400 Subject: [PATCH] Prevent a TTL bug. --- irkerd | 1 + 1 file changed, 1 insertion(+) diff --git a/irkerd b/irkerd index 67d0828..3005dbe 100755 --- a/irkerd +++ b/irkerd @@ -232,6 +232,7 @@ class Connection: self.status = "handshaking" self.irker.debug(1, "XMIT_TTL bump (%s connection) at %s" % (self.servername, time.asctime())) self.last_xmit = time.time() + self.last_ping = time.time() except irc.client.ServerConnectionError: self.status = "disconnected" elif self.status == "handshaking": -- 2.26.2