mirror of
				https://github.com/PurpleI2P/i2pd.git
				synced 2025-11-04 00:20:46 +00:00 
			
		
		
		
	fixed #651. check is destination is set
This commit is contained in:
		
							parent
							
								
									b54892a783
								
							
						
					
					
						commit
						e78ccc6bec
					
				
					 1 changed files with 8 additions and 3 deletions
				
			
		
							
								
								
									
										11
									
								
								BOB.cpp
									
										
									
									
									
								
							
							
						
						
									
										11
									
								
								BOB.cpp
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -568,10 +568,15 @@ namespace client
 | 
			
		|||
		{
 | 
			
		||||
			std::stringstream s;
 | 
			
		||||
			s << "DATA"; s << " NICKNAME: "; s << m_Nickname;
 | 
			
		||||
			if (m_CurrentDestination->GetLocalDestination ()->IsReady ())
 | 
			
		||||
				s << " STARTING: false RUNNING: true STOPPING: false";
 | 
			
		||||
			if (m_CurrentDestination)
 | 
			
		||||
			{	
 | 
			
		||||
				if (m_CurrentDestination->GetLocalDestination ()->IsReady ())
 | 
			
		||||
					s << " STARTING: false RUNNING: true STOPPING: false";
 | 
			
		||||
				else
 | 
			
		||||
					s << " STARTING: true RUNNING: false STOPPING: false";
 | 
			
		||||
			}	
 | 
			
		||||
			else
 | 
			
		||||
				s << " STARTING: true RUNNING: false STOPPING: false";
 | 
			
		||||
				s << " STARTING: false RUNNING: false STOPPING: false";
 | 
			
		||||
			s << " KEYS: true"; s << " QUIET: "; s << (m_IsQuiet ? "true":"false");
 | 
			
		||||
			if (m_InPort)
 | 
			
		||||
			{	
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue