]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/states/dht/booting/class_DhtBootingState.php
Continued:
[hub.git] / application / hub / main / states / dht / booting / class_DhtBootingState.php
index e590148a1b4bb904506f21e4f7b81ac11c80480c..2cec6825d4bb8a75b07f6c9d916ecdebe314c865 100644 (file)
@@ -46,11 +46,17 @@ class DhtBootingState extends BaseDhtState implements Stateable {
                $stateInstance = new DhtBootingState();
 
                // Debug message
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-STATE: Has changed from ' . $dhtInstance->getPrintableState() . ' to ' . $stateInstance->getStateName() . '.');
+               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-STATE: Has changed from ' . $dhtInstance->getPrintableState() . ' to ' . $stateInstance->getStateName() . '.');
 
                // Set the dht instance
                $stateInstance->setDhtInstance($dhtInstance);
 
+               // Get node instance and enable DHT bootstrap requests
+               NodeObjectFactory::createNodeInstance()->enableAcceptDhtBootstrap();
+
+               // Update DHT node info as well
+               $dhtInstance->enableAcceptDhtBootstrap();
+
                // Return the prepared instance
                return $stateInstance;
        }