]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/nodes/class_BaseHubNode.php
Bootstrap code for boot-node moved to its class
[hub.git] / application / hub / main / nodes / class_BaseHubNode.php
index fe58930c2bbd1691285018952cf43ea726c1cdd6..c0dfac164a2723ba3b383afbda0a37c4627fd9a1 100644 (file)
@@ -72,7 +72,7 @@ class BaseHubNode extends BaseFrameworkSystem implements Updateable {
         * @param       $remoteAddr             IP address to checkout against our bootstrapping list
         * @return      $isFound                Wether the IP is found
         */
-       private function ifAddressMatchesBootstrappingNodes ($remoteAddr) {
+       protected function ifAddressMatchesBootstrappingNodes ($remoteAddr) {
                // By default nothing is found
                $isFound = false;
 
@@ -87,7 +87,7 @@ class BaseHubNode extends BaseFrameworkSystem implements Updateable {
                                $this->bootIpPort = $ipPort;
 
                                // Output message
-                               $this->getDebugInstance()->output(__FUNCTION__.': IP matches remote address ' . $ipPort . '.');
+                               $this->getDebugInstance()->output(__FUNCTION__.'['.__LINE__.']: IP matches remote address ' . $ipPort . '.');
 
                                // Stop further searching
                                break;
@@ -100,7 +100,7 @@ class BaseHubNode extends BaseFrameworkSystem implements Updateable {
                                $this->bootIpPort = $ipPort;
 
                                // Output message
-                               $this->getDebugInstance()->output(__FUNCTION__.': IP matches listen address ' . $ipPort . '.');
+                               $this->getDebugInstance()->output(__FUNCTION__.'['.__LINE__.']: IP matches listen address ' . $ipPort . '.');
 
                                // Stop further searching
                                break;
@@ -140,27 +140,6 @@ class BaseHubNode extends BaseFrameworkSystem implements Updateable {
         * @return      void
         */
        protected function doGenericBootstrapping () {
-               // Now check if the IP address matches one of the bootstrap nodes
-               if ($this->ifAddressMatchesBootstrappingNodes($_SERVER['REMOTE_ADDR'])) {
-                       // Get our port
-                       $ourPort = $this->getConfigInstance()->readConfig('node_listen_port');
-
-                       // Is the port the same?
-                       if (substr($this->bootIpPort, -strlen($ourPort), strlen($ourPort)) == $ourPort) {
-                               // It is the same!
-                               $this->getDebugInstance()->output(__FUNCTION__.': IP/port matches bootstrapping node ' . $this->bootIpPort . '.');
-
-                               // Now, does the mode match (should be 'boot'!)
-                               if ($this->getRequestInstance()->getRequestElement('mode') == 'boot') {
-                                       // Output debug message
-                                       $this->getDebugInstance()->output(__FUNCTION__.': Our node is a valid bootstrapping node.');
-                               } else {
-                                       // Output warning
-                                       $this->getDebugInstance()->output(__FUNCTION__.': WARNING! Mismatching mode ' . $this->getRequestInstance()->getRequestElement('mode') . '!=boot detected.');
-                               }
-                       } // END - if
-               } // END - if
-
                // Finally output our teaser. This should be the last line!
                $this->outputConsoleTeaser();
        }