summaryrefslogtreecommitdiff
path: root/src/pub.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-03-09 16:56:53 +0100
committerMartin Sustrik <sustrik@250bpm.com>2010-03-09 16:56:53 +0100
commit531c6af0d4df606ddef15da821dad20399b9480a (patch)
tree168140cb9d656469e4d4f66a187f5a4dd43b5fe4 /src/pub.cpp
parent96ccc1c5fceb56bd7ffc2e6bef9ddab5347d722b (diff)
message flags added to zmq_msg_t strcuture
Diffstat (limited to 'src/pub.cpp')
-rw-r--r--src/pub.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pub.cpp b/src/pub.cpp
index 5b9d48c..342b1d2 100644
--- a/src/pub.cpp
+++ b/src/pub.cpp
@@ -121,11 +121,11 @@ int zmq::pub_t::xsend (zmq_msg_t *msg_, int flags_)
// There are at least 2 destinations for the message. That means we have
// to deal with reference counting. First add N-1 references to
// the content (we are holding one reference anyway, that's why -1).
- if (msg_->shared)
+ if (msg_->flags & ZMQ_MSG_SHARED)
content->refcnt.add (pipes_count - 1);
else {
content->refcnt.set (pipes_count);
- msg_->shared = true;
+ msg_->flags |= ZMQ_MSG_SHARED;
}
// Push the message to all destinations.