Fix pipe terimation in router while reading message

This commit is contained in:
somdoron
2015-11-20 21:21:35 +02:00
parent 4f7dc49642
commit 804bce8294
2 changed files with 32 additions and 2 deletions

View File

@@ -92,6 +92,12 @@ namespace zmq
// Holds the prefetched message.
msg_t prefetched_msg;
// The pipe we are currently reading from
zmq::pipe_t *current_in;
// Should current_in should be terminate after all parts received?
bool terminate_current_in;
// If true, more incoming message parts are expected.
bool more_in;