From 7cd52847a519d2572fd5ceb34228969cab95f068 Mon Sep 17 00:00:00 2001 From: Luke Fitzgerald Date: Sat, 7 Aug 2010 17:25:43 -0700 Subject: [PATCH] Added pinging to keep connection open --- plugins/Irc/ircmanager.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/plugins/Irc/ircmanager.php b/plugins/Irc/ircmanager.php index b99c7b2fea..bd6242a6a5 100644 --- a/plugins/Irc/ircmanager.php +++ b/plugins/Irc/ircmanager.php @@ -31,6 +31,8 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } class IrcManager extends ImManager { protected $conn = null; + protected $lastPing = null; + protected $regchecks = array(); protected $regchecksLookup = array(); @@ -63,6 +65,18 @@ class IrcManager extends ImManager { } } + /** + * Idle processing for io manager's execution loop. + * Send keepalive pings to server. + * + * @return void + */ + public function idle($timeout = 0) { + if (empty($this->lastPing) || time() - $this->lastPing > 120) { + $this->send_ping(); + } + } + /** * Process IRC events that have come in over the wire. * @@ -232,4 +246,14 @@ class IrcManager extends ImManager { return true; } + + /** + * Sends a ping + * + * @return void + */ + protected function send_ping() { + $this->lastPing = time(); + $this->conn->send('PING', $this->lastPing); + } } -- 2.39.5