Commit acfd0f8c authored by Martin Sustrik's avatar Martin Sustrik

prefix in XREP recv'd message misses MORE flag

parent ae93ed31
...@@ -220,6 +220,7 @@ int zmq::xrep_t::xrecv (zmq_msg_t *msg_, int flags_) ...@@ -220,6 +220,7 @@ int zmq::xrep_t::xrecv (zmq_msg_t *msg_, int flags_)
zmq_assert (rc == 0); zmq_assert (rc == 0);
memcpy (zmq_msg_data (msg_), inpipes [current_in].identity.data (), memcpy (zmq_msg_data (msg_), inpipes [current_in].identity.data (),
zmq_msg_size (msg_)); zmq_msg_size (msg_));
msg_->flags = ZMQ_MSG_MORE;
more_in = true; more_in = true;
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment