From: Luke Fitzgerald Date: Sun, 8 Aug 2010 00:25:43 +0000 (-0700) Subject: Added pinging to keep connection open X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7cd52847a519d2572fd5ceb34228969cab95f068;p=quix0rs-gnu-social.git Added pinging to keep connection open --- 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); + } }