summaryrefslogtreecommitdiff
path: root/src/req.cpp
diff options
context:
space:
mode:
authorMartin Lucina <martin@lucina.net>2012-01-23 08:53:29 +0100
committerMartin Lucina <martin@lucina.net>2012-01-23 08:53:29 +0100
commit2c416a793ea781273a5da6742211f5f01af13a2b (patch)
treeb8ede23ec38d4aab9595a517b4b9894df40c2cae /src/req.cpp
parent5ba1cb20fe6f6699cef1cc726718e760cd4c9af1 (diff)
Imported Upstream version 2.0.10upstream/2.0.10
Diffstat (limited to 'src/req.cpp')
-rw-r--r--src/req.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/req.cpp b/src/req.cpp
index f3695a2..a77c061 100644
--- a/src/req.cpp
+++ b/src/req.cpp
@@ -111,10 +111,8 @@ void zmq::req_t::xkill (class reader_t *pipe_)
void zmq::req_t::xrevive (class reader_t *pipe_)
{
- // TODO: Actually, misbehaving peer can cause this kind of thing.
- // Handle it decently, presumably kill the offending connection.
- zmq_assert (pipe_ == reply_pipe);
- reply_pipe_active = true;
+ if (pipe_ == reply_pipe)
+ reply_pipe_active = true;
}
void zmq::req_t::xrevive (class writer_t *pipe_)