mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	Don't ignore server disconnects in client code
If the server stops talking to us without saying bye we should actually end the in-game session with an error message.
This commit is contained in:
		@@ -786,16 +786,18 @@ void Client::peerAdded(con::Peer *peer)
 | 
			
		||||
	infostream << "Client::peerAdded(): peer->id="
 | 
			
		||||
			<< peer->id << std::endl;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void Client::deletingPeer(con::Peer *peer, bool timeout)
 | 
			
		||||
{
 | 
			
		||||
	infostream << "Client::deletingPeer(): "
 | 
			
		||||
			"Server Peer is getting deleted "
 | 
			
		||||
			<< "(timeout=" << timeout << ")" << std::endl;
 | 
			
		||||
 | 
			
		||||
	if (timeout) {
 | 
			
		||||
		m_access_denied = true;
 | 
			
		||||
	m_access_denied = true;
 | 
			
		||||
	if (timeout)
 | 
			
		||||
		m_access_denied_reason = gettext("Connection timed out.");
 | 
			
		||||
	}
 | 
			
		||||
	else
 | 
			
		||||
		m_access_denied_reason = gettext("Connection aborted (protocol error?).");
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user