mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	Display an access denied message when client detects a server timeout
This commit is contained in:
		@@ -743,14 +743,19 @@ bool Client::loadMedia(const std::string &data, const std::string &filename)
 | 
			
		||||
// Virtual methods from con::PeerHandler
 | 
			
		||||
void Client::peerAdded(con::Peer *peer)
 | 
			
		||||
{
 | 
			
		||||
	infostream<<"Client::peerAdded(): peer->id="
 | 
			
		||||
			<<peer->id<<std::endl;
 | 
			
		||||
	infostream << "Client::peerAdded(): peer->id="
 | 
			
		||||
			<< peer->id << std::endl;
 | 
			
		||||
}
 | 
			
		||||
void Client::deletingPeer(con::Peer *peer, bool timeout)
 | 
			
		||||
{
 | 
			
		||||
	infostream<<"Client::deletingPeer(): "
 | 
			
		||||
	infostream << "Client::deletingPeer(): "
 | 
			
		||||
			"Server Peer is getting deleted "
 | 
			
		||||
			<<"(timeout="<<timeout<<")"<<std::endl;
 | 
			
		||||
			<< "(timeout=" << timeout << ")" << std::endl;
 | 
			
		||||
 | 
			
		||||
	if (timeout) {
 | 
			
		||||
		m_access_denied = true;
 | 
			
		||||
		m_access_denied_reason = gettext("Connection timed out.");
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user