]> git.mxchange.org Git - quix0rs-apt-p2p.git/blobdiff - apt_dht/apt_dht_conf.py
Made the DHT join method work and added tests for it.
[quix0rs-apt-p2p.git] / apt_dht / apt_dht_conf.py
index 0c5ca52e5adae4ae0028e5c2133d9ac3b57db0a9..7ad5d9d2ee086010dd4fdb966642d13904c57931 100644 (file)
@@ -33,7 +33,7 @@ DEFAULTS = {
     # implements the IDHT interface.
     'DHT': 'apt_dht_Khashmir',
 
-    # Whether to only run the DHT (for providing a login node)
+    # Whether to only run the DHT (for providing only a bootstrap node)
     'DHT-ONLY': 'no',
 }
 
@@ -42,6 +42,9 @@ DHT_DEFAULTS = {
     'BOOTSTRAP': """www.camrdale.org:9977
         steveholt.hopto.org:9977""",
     
+    # whether this node is a bootstrap node
+    'BOOTSTRAP_NODE': "no",
+    
     # Kademlia "K" constant, this should be an even number
     'K': '8',