make ZMQ_STREAM_NOTIFY also control disconnect notificatons

This commit is contained in:
KIU Shueng Chuan
2015-07-24 05:12:11 +08:00
parent ec5592db1f
commit 518b939f31
2 changed files with 6 additions and 6 deletions

View File

@@ -965,7 +965,7 @@ int zmq::stream_engine_t::write_subscription_msg (msg_t *msg_)
void zmq::stream_engine_t::error (error_reason_t reason)
{
if (options.raw_socket) {
if (options.raw_socket && options.raw_notify) {
// For raw sockets, send a final 0-length message to the application
// so that it knows the peer has been disconnected.
msg_t terminator;