mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 22:44:34 +00:00
Reduce broadcast message size by 4 bytes.
Note that this is compatible with previous clients, which will never get values 0 or 1 in the 32-bit integer that is now split between broadcastVersion and listenPort.
This commit is contained in:
parent
593ce74042
commit
c1a5ef4108
@ -10,7 +10,7 @@ namespace tracy
|
|||||||
constexpr unsigned Lz4CompressBound( unsigned isize ) { return isize + ( isize / 255 ) + 16; }
|
constexpr unsigned Lz4CompressBound( unsigned isize ) { return isize + ( isize / 255 ) + 16; }
|
||||||
|
|
||||||
enum : uint32_t { ProtocolVersion = 40 };
|
enum : uint32_t { ProtocolVersion = 40 };
|
||||||
enum : uint32_t { BroadcastVersion = 2 };
|
enum : uint16_t { BroadcastVersion = 2 };
|
||||||
|
|
||||||
using lz4sz_t = uint32_t;
|
using lz4sz_t = uint32_t;
|
||||||
|
|
||||||
@ -108,9 +108,9 @@ enum { OnDemandPayloadMessageSize = sizeof( OnDemandPayloadMessage ) };
|
|||||||
|
|
||||||
struct BroadcastMessage
|
struct BroadcastMessage
|
||||||
{
|
{
|
||||||
uint32_t broadcastVersion;
|
uint16_t broadcastVersion;
|
||||||
|
uint16_t listenPort;
|
||||||
uint32_t protocolVersion;
|
uint32_t protocolVersion;
|
||||||
uint32_t listenPort;
|
|
||||||
int32_t activeTime; // in seconds
|
int32_t activeTime; // in seconds
|
||||||
char programName[WelcomeMessageProgramNameSize];
|
char programName[WelcomeMessageProgramNameSize];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user