]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Made private methods protected
authorLuke Fitzgerald <lw.fitzgerald@googlemail.com>
Mon, 9 Aug 2010 14:05:58 +0000 (07:05 -0700)
committerLuke Fitzgerald <lw.fitzgerald@googlemail.com>
Mon, 9 Aug 2010 14:05:58 +0000 (07:05 -0700)
plugins/Msn/msnmanager.php

index 235c8a9430d1a9c90c8142c38bc380d25115406f..8e568c64cb38b060e79f470160db926de7bbdf2a 100644 (file)
@@ -32,8 +32,8 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
 \r
 class MsnManager extends ImManager {\r
     public $conn = null;\r
-    private $lastping = null;\r
-    private $pingInterval;\r
+    protected $lastPing = null;\r
+    protected $pingInterval;\r
 \r
     /**\r
      * Initialise connection to server.\r
@@ -72,7 +72,7 @@ class MsnManager extends ImManager {
      * @return void\r
      */\r
     public function idle($timeout = 0) {\r
-        if (empty($this->lastping) || time() - $this->lastping > $this->pingInterval) {\r
+        if (empty($this->lastPing) || time() - $this->lastPing > $this->pingInterval) {\r
             $this->send_ping();\r
         }\r
     }\r
@@ -81,7 +81,7 @@ class MsnManager extends ImManager {
      * Message pump is triggered on socket input, so we only need an idle()\r
      * call often enough to trigger our outgoing pings.\r
      */\r
-    function timeout() {\r
+    public function timeout() {\r
         return $this->pingInterval;\r
     }\r
 \r
@@ -119,7 +119,7 @@ class MsnManager extends ImManager {
             $this->conn->registerHandler('ConnectFailed', array($this, 'handle_connect_failed'));\r
             $this->conn->registerHandler('Reconnect', array($this, 'handle_reconnect'));\r
             $this->conn->signon();\r
-            $this->lastping = time();\r
+            $this->lastPing = time();\r
         }\r
         return $this->conn;\r
     }\r
@@ -130,14 +130,14 @@ class MsnManager extends ImManager {
     *\r
     * @return void\r
     */\r
-    private function send_ping() {\r
+    protected function send_ping() {\r
         $this->connect();\r
         if (!$this->conn) {\r
             return false;\r
         }\r
 \r
         $this->conn->sendPing();\r
-        $this->lastping = time();\r
+        $this->lastPing = time();\r
         $this->pingInterval = 50;\r
         return true;\r
     }\r
@@ -230,7 +230,7 @@ class MsnManager extends ImManager {
     * @param string $to Intended recipient\r
     * @param string $message Message\r
     */\r
-    private function enqueue_waiting_message($to, $message) {\r
+    protected function enqueue_waiting_message($to, $message) {\r
         $wm = new Msn_waiting_message();\r
 \r
         $wm->screenname = $to;\r
@@ -268,7 +268,7 @@ class MsnManager extends ImManager {
         }\r
 \r
         // Sending a command updates the time till next ping\r
-        $this->lastping = time();\r
+        $this->lastPing = time();\r
         $this->pingInterval = 50;\r
         return true;\r
     }\r