Merge pull request #9016 from def-/pr-rere

Revert banning old client versions
This commit is contained in:
Dennis Felsing 2024-09-22 14:55:10 +00:00 committed by GitHub
commit f9df4a85be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 0 additions and 22 deletions

View file

@ -1434,11 +1434,6 @@ bool CServer::CheckReservedSlotAuth(int ClientId, const char *pPassword)
return false;
}
void CServer::DropOldClient(int ClientId)
{
m_NetServer.Drop(ClientId, "This version of the client is compromised. Do not click the update button. ddnet.org/olddomain");
}
void CServer::ProcessClientPacket(CNetChunk *pPacket)
{
int ClientId = pPacket->m_ClientId;
@ -1500,13 +1495,6 @@ void CServer::ProcessClientPacket(CNetChunk *pPacket)
{
return;
}
if(DDNetVersion < VERSION_DDNET_NEW_DOMAIN)
{
DropOldClient(ClientId);
return;
}
m_aClients[ClientId].m_ConnectionId = *pConnectionId;
m_aClients[ClientId].m_DDNetVersion = DDNetVersion;
str_copy(m_aClients[ClientId].m_aDDNetVersionStr, pDDNetVersionStr);
@ -1524,13 +1512,6 @@ void CServer::ProcessClientPacket(CNetChunk *pPacket)
{
return;
}
if(!m_aClients[ClientId].m_GotDDNetVersionPacket && !IsSixup(ClientId))
{
DropOldClient(ClientId);
return;
}
if(str_comp(pVersion, GameServer()->NetVersion()) != 0 && str_comp(pVersion, "0.7 802f1be60a05665f") != 0)
{
// wrong version

View file

@ -337,7 +337,6 @@ public:
void UpdateClientRconCommands();
bool CheckReservedSlotAuth(int ClientId, const char *pPassword);
void DropOldClient(int ClientId);
void ProcessClientPacket(CNetChunk *pPacket);
class CCache

View file

@ -126,8 +126,6 @@ enum
VERSION_DDNET_MULTI_LASER = 16040,
VERSION_DDNET_ENTITY_NETOBJS = 16200,
VERSION_DDNET_REDIRECT = 17020,
VERSION_DDNET_NEW_DOMAIN = 16040,
};
typedef std::bitset<MAX_CLIENTS> CClientMask;