Add identification of server to client query.

This commit is contained in:
Bartosz Taudul 2017-09-22 01:51:24 +02:00
parent 3ba6046a53
commit 7f337fae99

View File

@ -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( TargetFrameSize * 2 >= 64 * 1024, "Not enough space for LZ4 stream buffer" );
enum ServerQuery : uint8_t
{
ServerQueryString,
ServerQueryThreadString
};
}
#endif