mirror of
https://github.com/ShaYmez/xlxd.git
synced 2025-07-01 16:05:17 -04:00
xlxd 2.3.5
Updated YSF server status protocol
This commit is contained in:
parent
72eeaafc87
commit
be87d54897
@ -948,6 +948,7 @@ bool CYsfProtocol::IsValidServerStatusPacket(const CBuffer &Buffer) const
|
|||||||
bool CYsfProtocol::EncodeServerStatusPacket(CBuffer *Buffer) const
|
bool CYsfProtocol::EncodeServerStatusPacket(CBuffer *Buffer) const
|
||||||
{
|
{
|
||||||
uint8 tag[] = { 'Y','S','F','S' };
|
uint8 tag[] = { 'Y','S','F','S' };
|
||||||
|
uint8 description[] = { 'X','L','X',' ','r','e','f','l','e','c','t','o','r',' ' };
|
||||||
uint8 callsign[16];
|
uint8 callsign[16];
|
||||||
|
|
||||||
// tag
|
// tag
|
||||||
@ -961,7 +962,7 @@ bool CYsfProtocol::EncodeServerStatusPacket(CBuffer *Buffer) const
|
|||||||
// name
|
// name
|
||||||
Buffer->Append(callsign, 16);
|
Buffer->Append(callsign, 16);
|
||||||
// desscription
|
// desscription
|
||||||
Buffer->Append(' ', 14);
|
Buffer->Append(description, 14);
|
||||||
// connected clients
|
// connected clients
|
||||||
CClients *clients = g_Reflector.GetClients();
|
CClients *clients = g_Reflector.GetClients();
|
||||||
int count = MIN(999, clients->GetSize());
|
int count = MIN(999, clients->GetSize());
|
||||||
|
@ -49,7 +49,7 @@
|
|||||||
|
|
||||||
#define VERSION_MAJOR 2
|
#define VERSION_MAJOR 2
|
||||||
#define VERSION_MINOR 3
|
#define VERSION_MINOR 3
|
||||||
#define VERSION_REVISION 4
|
#define VERSION_REVISION 5
|
||||||
|
|
||||||
// global ------------------------------------------------------
|
// global ------------------------------------------------------
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user