]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/nodes/boot/class_HubBootNode.php
New Exception added, registering of session ids added:
[hub.git] / application / hub / main / nodes / boot / class_HubBootNode.php
index ce7841e4ae6dbf3b394fd684782490f340040c85..f884f53bbc58a57dfb96f245c2c1cadf84609d5b 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -61,7 +61,7 @@ class HubBootNode extends BaseHubNode implements NodeHelper, Registerable {
                // Now check if the IP address matches one of the bootstrap nodes
                if ($this->ifAddressMatchesBootstrappingNodes($this->getConfigInstance()->detectServerAddress())) {
                        // Get our port from configuration
-                       $ourPort = $this->getConfigInstance()->getConfigEntry('node_tcp_listen_port');
+                       $ourPort = $this->getConfigInstance()->getConfigEntry('boot_node_tcp_listen_port');
 
                        // Extract port
                        $bootPort = substr($this->getBootIpPort(), -strlen($ourPort), strlen($ourPort));
@@ -105,15 +105,19 @@ class HubBootNode extends BaseHubNode implements NodeHelper, Registerable {
        }
 
        /**
-        * Adds some node-specific filters to the filter chains
+        * Add some node-specific filters
         *
-        * @param       $requestInstance        A Requestable class
-        * @param       $responseInstance       A Responseable class
         * @return      void
-        * @todo        0%
         */
-       public function addExtraFilters (Requestable $requestInstance, Responseable $responseInstance) {
-               $this->partialStub('Please implement this method.');
+       public function addExtraHubFilters () {
+               // Get the application instance from registry
+               $applicationInstance = Registry::getRegistry()->getInstance('app');
+
+               // Get the controller from the application
+               $controllerInstance = $applicationInstance->getControllerInstance();
+
+               // @TODO Add some filters here
+               $this->partialStub('Add some filters here.');
        }
 }