summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Hurton <hurtonm@gmail.com>2010-03-03 17:25:46 +0100
committerMartin Hurton <hurtonm@gmail.com>2010-03-12 11:07:39 +0100
commit6badd204d5686de8b2a6e8ee88da78260c0ff949 (patch)
treed8461ad9183c0f514deba9bbb34b675b6f630c3c /src
parent923609b0922c3bf07f16c8c99aba4fe98f08ef60 (diff)
Implement flow control for ZMQ_REP sockets
Diffstat (limited to 'src')
-rw-r--r--src/rep.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/rep.cpp b/src/rep.cpp
index 2cd4144..08fc31b 100644
--- a/src/rep.cpp
+++ b/src/rep.cpp
@@ -146,7 +146,6 @@ void zmq::rep_t::xrevive (class reader_t *pipe_)
void zmq::rep_t::xrevive (class writer_t *pipe_)
{
- zmq_not_implemented ();
}
int zmq::rep_t::xsetsockopt (int option_, const void *optval_,
@@ -163,16 +162,17 @@ int zmq::rep_t::xsend (zmq_msg_t *msg_, int flags_)
return -1;
}
- // TODO: Implement this once queue limits are in-place. If the reply
- // overloads the buffer, connection should be torn down.
- zmq_assert (reply_pipe->check_write ());
-
// Push message to the selected pipe. If requester have disconnected
// in the meantime, drop the reply.
if (reply_pipe) {
bool written = reply_pipe->write (msg_);
- zmq_assert (written);
- reply_pipe->flush ();
+ if (written)
+ reply_pipe->flush ();
+ else
+ // The pipe is full; just drop the reference to
+ // the message content.
+ // TODO: Tear down the underlying connection.
+ zmq_msg_close (msg_);
}
else {
zmq_msg_close (msg_);