mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-06 00:31:13 +01:00
Merge pull request #1043 from hurtonm/dont_reconnect_on_protocol_errors
Don't reconnect on protocol errors
This commit is contained in:
commit
77f5f7adae
@ -376,10 +376,22 @@ void zmq::session_base_t::engine_error (
|
|||||||
if (pipe)
|
if (pipe)
|
||||||
clean_pipes ();
|
clean_pipes ();
|
||||||
|
|
||||||
|
zmq_assert (reason == stream_engine_t::connection_error
|
||||||
|
|| reason == stream_engine_t::timeout_error
|
||||||
|
|| reason == stream_engine_t::protocol_error);
|
||||||
|
|
||||||
|
switch (reason) {
|
||||||
|
case stream_engine_t::timeout_error:
|
||||||
|
case stream_engine_t::connection_error:
|
||||||
if (active)
|
if (active)
|
||||||
reconnect ();
|
reconnect ();
|
||||||
else
|
else
|
||||||
terminate ();
|
terminate ();
|
||||||
|
break;
|
||||||
|
case stream_engine_t::protocol_error:
|
||||||
|
terminate ();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
// Just in case there's only a delimiter in the pipe.
|
// Just in case there's only a delimiter in the pipe.
|
||||||
if (pipe)
|
if (pipe)
|
||||||
|
Loading…
Reference in New Issue
Block a user