diff options
author | Martin Hurton <hurtonm@gmail.com> | 2010-03-01 10:13:26 +0100 |
---|---|---|
committer | Martin Hurton <hurtonm@gmail.com> | 2010-03-12 11:07:38 +0100 |
commit | 61ee6fae536a8000be87b5aaf271f6519a3b7d3f (patch) | |
tree | 4c088ad3c62ff35a5e5482d9127dc510e5b3aaf7 /src/xreq.hpp | |
parent | 31d36104aa7caead6f299f0c5cb58a9fde7cf9b0 (diff) |
Implement flow control
This commit introduces the necessary changes necessary
for implementing flow control. None of the socket types
implements the flow control yet. The code will crash when
the flow control is enabled and the thw lwm is reached.
The following commits will add flow-control support for
individual socket types.
Diffstat (limited to 'src/xreq.hpp')
-rw-r--r-- | src/xreq.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xreq.hpp b/src/xreq.hpp index e23e832..3d3f573 100644 --- a/src/xreq.hpp +++ b/src/xreq.hpp @@ -41,6 +41,7 @@ namespace zmq void xdetach_outpipe (class writer_t *pipe_); void xkill (class reader_t *pipe_); void xrevive (class reader_t *pipe_); + void xrevive (class writer_t *pipe_); int xsetsockopt (int option_, const void *optval_, size_t optvallen_); int xsend (zmq_msg_t *msg_, int flags_); int xflush (); |