From be87d548970804989d9f2bc4fb3b343fc3586d38 Mon Sep 17 00:00:00 2001 From: LX3JL Date: Wed, 8 Jan 2020 19:28:54 +0100 Subject: [PATCH] xlxd 2.3.5 Updated YSF server status protocol --- src/cysfprotocol.cpp | 3 ++- src/main.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/cysfprotocol.cpp b/src/cysfprotocol.cpp index 12be9dd..f0573a3 100644 --- a/src/cysfprotocol.cpp +++ b/src/cysfprotocol.cpp @@ -948,6 +948,7 @@ bool CYsfProtocol::IsValidServerStatusPacket(const CBuffer &Buffer) const bool CYsfProtocol::EncodeServerStatusPacket(CBuffer *Buffer) const { uint8 tag[] = { 'Y','S','F','S' }; + uint8 description[] = { 'X','L','X',' ','r','e','f','l','e','c','t','o','r',' ' }; uint8 callsign[16]; // tag @@ -961,7 +962,7 @@ bool CYsfProtocol::EncodeServerStatusPacket(CBuffer *Buffer) const // name Buffer->Append(callsign, 16); // desscription - Buffer->Append(' ', 14); + Buffer->Append(description, 14); // connected clients CClients *clients = g_Reflector.GetClients(); int count = MIN(999, clients->GetSize()); diff --git a/src/main.h b/src/main.h index 96023fd..b07c48e 100644 --- a/src/main.h +++ b/src/main.h @@ -49,7 +49,7 @@ #define VERSION_MAJOR 2 #define VERSION_MINOR 3 -#define VERSION_REVISION 4 +#define VERSION_REVISION 5 // global ------------------------------------------------------