Removed support for v2 onions
This commit is contained in:
		
							parent
							
								
									922f2be235
								
							
						
					
					
						commit
						62b4f5eb0e
					
				
					 3 changed files with 2 additions and 8 deletions
				
			
		|  | @ -57,8 +57,6 @@ def connect_new_peer_to_communicator(comm_inst, peer='', useBootstrap=False): | ||||||
|     for address in peerList: |     for address in peerList: | ||||||
|         address = address.strip() |         address = address.strip() | ||||||
| 
 | 
 | ||||||
|         if not config.get('tor.v3onions') and len(address) == 62: |  | ||||||
|             continue |  | ||||||
|         # Don't connect to our own address |         # Don't connect to our own address | ||||||
|         if address in transports: |         if address in transports: | ||||||
|             continue |             continue | ||||||
|  |  | ||||||
|  | @ -17,12 +17,10 @@ def generate_torrc(net_controller, api_server_ip): | ||||||
|         Generate a torrc file for our tor instance |         Generate a torrc file for our tor instance | ||||||
|     """ |     """ | ||||||
|     socks_port = net_controller.socksPort |     socks_port = net_controller.socksPort | ||||||
|     hs_ver = '# v2 onions' |  | ||||||
|     hs_port = net_controller.hsPort |     hs_port = net_controller.hsPort | ||||||
|     home_dir = identifyhome.identify_home() |     home_dir = identifyhome.identify_home() | ||||||
|     tor_config_location = home_dir + '/torrc' |     tor_config_location = home_dir + '/torrc' | ||||||
| 
 | 
 | ||||||
|     if config.get('tor.v3onions'): |  | ||||||
|     hs_ver = 'HiddenServiceVersion 3' |     hs_ver = 'HiddenServiceVersion 3' | ||||||
| 
 | 
 | ||||||
|     """ |     """ | ||||||
|  |  | ||||||
|  | @ -32,8 +32,6 @@ def mergeAdders(newAdderList): | ||||||
|         for adder in newAdderList.split(','): |         for adder in newAdderList.split(','): | ||||||
|             adder = adder.strip() |             adder = adder.strip() | ||||||
|             if not adder in keydb.listkeys.list_adders(randomOrder = False) and not adder in gettransports.get() and not blacklist.inBlacklist(adder): |             if not adder in keydb.listkeys.list_adders(randomOrder = False) and not adder in gettransports.get() and not blacklist.inBlacklist(adder): | ||||||
|                 if not config.get('tor.v3onions', True) and len(adder) == 62: |  | ||||||
|                     continue |  | ||||||
|                 if keydb.addkeys.add_address(adder): |                 if keydb.addkeys.add_address(adder): | ||||||
|                     # Check if we have the maximum amount of allowed stored peers |                     # Check if we have the maximum amount of allowed stored peers | ||||||
|                     if config.get('peers.max_stored_peers') > len(keydb.listkeys.list_adders()): |                     if config.get('peers.max_stored_peers') > len(keydb.listkeys.list_adders()): | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue