mirror of
https://github.com/wolfpld/tracy
synced 2025-04-29 20:33:52 +00:00
Add identification of server to client query.
This commit is contained in:
parent
3ba6046a53
commit
7f337fae99
@ -16,6 +16,12 @@ enum { LZ4Size = LZ4_COMPRESSBOUND( TargetFrameSize ) };
|
|||||||
static_assert( LZ4Size <= std::numeric_limits<lz4sz_t>::max(), "LZ4Size greater than lz4sz_t" );
|
static_assert( LZ4Size <= std::numeric_limits<lz4sz_t>::max(), "LZ4Size greater than lz4sz_t" );
|
||||||
static_assert( TargetFrameSize * 2 >= 64 * 1024, "Not enough space for LZ4 stream buffer" );
|
static_assert( TargetFrameSize * 2 >= 64 * 1024, "Not enough space for LZ4 stream buffer" );
|
||||||
|
|
||||||
|
enum ServerQuery : uint8_t
|
||||||
|
{
|
||||||
|
ServerQueryString,
|
||||||
|
ServerQueryThreadString
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user