diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2011-04-19 08:08:15 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2011-04-19 08:08:15 +0200 |
commit | 581697695aac72894f2d3fefac904b9d50b3ba67 (patch) | |
tree | 1cb79d95271bb924f039ad915347020ff94269dc /include | |
parent | 20e0b7cdcb6e8095fbadb80765e9371803184060 (diff) |
Message validity is checked in the runtime
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/zmq.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/zmq.h b/include/zmq.h index e6fb60d..70197c9 100644 --- a/include/zmq.h +++ b/include/zmq.h @@ -137,6 +137,7 @@ ZMQ_EXPORT const char *zmq_strerror (int errnum); /* allows us to pack the stucture tigher and thus improve performance. */ #define ZMQ_MSG_MORE 1 #define ZMQ_MSG_SHARED 128 +#define ZMQ_MSG_MASK 129 /* Merges all the flags */ /* A message. Note that 'content' is not a pointer to the raw data. */ /* Rather it is pointer to zmq::msg_content_t structure */ |