]> git.mxchange.org Git - hub.git/commitdiff
Port number changed to 9060, several rewrites because of method constructor() is...
authorRoland Häder <roland@mxchange.org>
Mon, 5 May 2008 23:32:04 +0000 (23:32 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 5 May 2008 23:32:04 +0000 (23:32 +0000)
application/hub/class_ApplicationHelper.php
application/hub/config.php
application/hub/main/class_HubCommandProcessor.php
application/hub/main/class_HubConnector.php
application/hub/main/class_HubCoreLoop.php
application/hub/main/class_HubPeer.php

index 696aee8fe5709b9ae3abc846b279a709d6da61c6..94ea19675778004a411b042ea6149fff42abb509 100644 (file)
@@ -66,7 +66,7 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica
         */
        protected function __construct () {
                // Call parent constructor
-               parent::constructor(__CLASS__);
+               parent::__construct(__CLASS__);
 
                // Set description
                $this->setObjectDescription("Application-Helper");
index 926ab2e18604e8c643ee5db1f1549f526aa60a7a..e5ca83a159d15f2c0417ad65bccfb75e6cef2e72 100644 (file)
@@ -28,7 +28,7 @@ $cfg = FrameworkConfiguration::getInstance();
 $cfg->setConfigEntry("hub_listen_addr", "0.0.0.0");
 
 // CFG: HUB-LISTEN-PORT (zero = auto-choose)
-$cfg->setConfigEntry("hub_listen_port", 9050);
+$cfg->setConfigEntry("hub_listen_port", 9060);
 
 // CFG: TEMPLATE-ENGINE
 $cfg->setConfigEntry("tpl_engine", "ConsoleOutput");
@@ -64,7 +64,7 @@ $cfg->setConfigEntry("hub_msg_bye", "BYE");
 $cfg->setConfigEntry("hub_master_ip", "192.168.1.17");
 
 // CFG: HUB-MASTER-PORT
-$cfg->setConfigEntry("hub_master_port", 9050);
+$cfg->setConfigEntry("hub_master_port", 9060);
 
 // CFG: HUB-AUTH-REQUEST
 $cfg->setConfigEntry("hub_auth_request", "AUTH");
index 7de18ec0f18f3d55a957d30203b313d301cf69a1..50528e9c34e6de7f27d30d2469ef9d833b66250a 100644 (file)
@@ -44,9 +44,9 @@ class HubCommandProcessor extends BaseFrameworkSystem {
         *
         * @return      void
         */
-       private function __construct () {
+       protected function __construct () {
                // Call parent constructor
-               parent::constructor(__CLASS__);
+               parent::__construct(__CLASS__);
 
                // Set description
                $this->setObjectDescription("Hub-Command-Processor");
index de87246bc15903f577c7d8506653eadab0f96810..72ee165278ed8dee19d1f16a8daf97884cf06241 100644 (file)
@@ -36,9 +36,9 @@ class HubConnector extends BaseFrameworkSystem {
         *
         * @return      void
         */
-       private function __construct () {
+       protected function __construct () {
                // Call parent constructor
-               parent::constructor(__CLASS__);
+               parent::__construct(__CLASS__);
 
                // Set description
                $this->setObjectDescription("Hub-Connector");
index 6e85a6d902f9f7151b820d32fdbd4994e013f5f8..a64a4d6d95b68fb8efc247845b2a8cf2bc7eb6c7 100644 (file)
@@ -103,9 +103,9 @@ class HubCoreLoop extends BaseFrameworkSystem {
         *
         * @return      void
         */
-       private function __construct () {
+       protected function __construct () {
                // Call parent constructor
-               parent::constructor(__CLASS__);
+               parent::__construct(__CLASS__);
 
                // Set description
                $this->setObjectDescription("Hub-Core Loop");
index 59e23ecb6769292da6d31293a6617691291f4f88..c34b7ef21b2d1ae026ba81b005cce33ecbf9f33d 100644 (file)
@@ -132,9 +132,9 @@ class HubPeer extends BaseFrameworkSystem {
        /**
         * The private constructor
         */
-       private function __construct () {
+       protected function __construct () {
                // Call parent constructor
-               parent::constructor(__CLASS__);
+               parent::__construct(__CLASS__);
 
                // Set description
                $this->setObjectDescription("Hub-Peer");