mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-27 19:10:22 +01:00
Updated libzmq to match RFC 23, 24, 25, 26
* Command names changed from null terminated to length-specified * Command frames use the correct flag (bit 2) * test_stream acts as test case for command frames * Some code cleanups
This commit is contained in:
@@ -47,7 +47,8 @@ namespace zmq
|
||||
// Message flags.
|
||||
enum
|
||||
{
|
||||
more = 1,
|
||||
more = 1, // Followed by more parts
|
||||
command = 2, // Command frame (see ZMTP spec)
|
||||
identity = 64,
|
||||
shared = 128
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user