From 61ee6fae536a8000be87b5aaf271f6519a3b7d3f Mon Sep 17 00:00:00 2001 From: Martin Hurton Date: Mon, 1 Mar 2010 10:13:26 +0100 Subject: 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. --- src/socket_base.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/socket_base.cpp') diff --git a/src/socket_base.cpp b/src/socket_base.cpp index 50b4152..fdb2d12 100644 --- a/src/socket_base.cpp +++ b/src/socket_base.cpp @@ -552,6 +552,11 @@ void zmq::socket_base_t::revive (reader_t *pipe_) xrevive (pipe_); } +void zmq::socket_base_t::revive (writer_t *pipe_) +{ + xrevive (pipe_); +} + void zmq::socket_base_t::attach_pipes (class reader_t *inpipe_, class writer_t *outpipe_, const blob_t &peer_identity_) { -- cgit v1.2.3