mirror of
				https://github.com/PurpleI2P/i2pd.git
				synced 2025-11-04 08:30:46 +00:00 
			
		
		
		
	Read explicitPeer config settings into params
This commit is contained in:
		
							parent
							
								
									510d29b381
								
							
						
					
					
						commit
						39eed0f6fb
					
				
					 1 changed files with 3 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -389,6 +389,7 @@ namespace client
 | 
			
		|||
		options[I2CP_PARAM_MIN_TUNNEL_LATENCY] = GetI2CPOption(section, I2CP_PARAM_MIN_TUNNEL_LATENCY, DEFAULT_MIN_TUNNEL_LATENCY);
 | 
			
		||||
		options[I2CP_PARAM_MAX_TUNNEL_LATENCY] = GetI2CPOption(section, I2CP_PARAM_MAX_TUNNEL_LATENCY, DEFAULT_MAX_TUNNEL_LATENCY);
 | 
			
		||||
		options[I2CP_PARAM_STREAMING_INITIAL_ACK_DELAY] = GetI2CPOption(section, I2CP_PARAM_STREAMING_INITIAL_ACK_DELAY, DEFAULT_INITIAL_ACK_DELAY);
 | 
			
		||||
		options[I2CP_PARAM_EXPLICIT_PEERS] = GetI2CPOption(section, I2CP_PARAM_EXPLICIT_PEERS, NULL);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	void ClientContext::ReadI2CPOptionsFromConfig (const std::string& prefix, std::map<std::string, std::string>& options) const
 | 
			
		||||
| 
						 | 
				
			
			@ -406,6 +407,8 @@ namespace client
 | 
			
		|||
			options[I2CP_PARAM_MIN_TUNNEL_LATENCY] = value;
 | 
			
		||||
		if (i2p::config::GetOption(prefix + I2CP_PARAM_MAX_TUNNEL_LATENCY, value))
 | 
			
		||||
			options[I2CP_PARAM_MAX_TUNNEL_LATENCY] = value;
 | 
			
		||||
		if (i2p::config::GetOption(prefix + I2CP_PARAM_EXPLICIT_PEERS, value))
 | 
			
		||||
			options[I2CP_PARAM_EXPLICIT_PEERS] = value;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	void ClientContext::ReadTunnels ()
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue