mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-27 19:10:22 +01:00
Minor fixes to doc ; added zmq_msg_init_data() assert preventing deferred segfault
This commit is contained in:
@@ -44,7 +44,7 @@ namespace zmq
|
||||
{
|
||||
public:
|
||||
|
||||
// Mesage flags.
|
||||
// Message flags.
|
||||
enum
|
||||
{
|
||||
more = 1,
|
||||
@@ -105,8 +105,11 @@ namespace zmq
|
||||
enum type_t
|
||||
{
|
||||
type_min = 101,
|
||||
// VSM messages store the content in the message itself
|
||||
type_vsm = 101,
|
||||
// LMSG messages store the content in malloc-ed memory
|
||||
type_lmsg = 102,
|
||||
// Delimiter messages are used in envelopes
|
||||
type_delimiter = 103,
|
||||
// CMSG messages point to constant data
|
||||
type_cmsg = 104,
|
||||
|
||||
Reference in New Issue
Block a user