diff options
Diffstat (limited to 'src/xrep.cpp')
-rw-r--r-- | src/xrep.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/xrep.cpp b/src/xrep.cpp index 33b89bd..c70c3ac 100644 --- a/src/xrep.cpp +++ b/src/xrep.cpp @@ -33,9 +33,8 @@ zmq::xrep_t::xrep_t (class app_thread_t *parent_) : // That way we are aware of the peer's identity when binding to the pipes. options.immediate_connect = false; - // XREP socket adds identity to inbound messages and strips identity - // from the outbound messages. - options.traceroute = true; + // XREP is unfunctional at the moment. Crash here! + zmq_assert (false); } zmq::xrep_t::~xrep_t () |