diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2010-02-12 19:42:35 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-02-12 19:42:35 +0100 |
commit | 313b5dfadd8753b341197cc109bce40e08856cf6 (patch) | |
tree | 28cb7ec6f955ca12a28a7cf58fc5751d94227bc7 /src/options.cpp | |
parent | 96e0442332fcc680ddafdcaa8fcbdc6acd992c76 (diff) |
Multi-hop REQ/REP, part III., change 'type' in options to simple 'traceroute' flag
Diffstat (limited to 'src/options.cpp')
-rw-r--r-- | src/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/options.cpp b/src/options.cpp index f9d93d6..cdfccc6 100644 --- a/src/options.cpp +++ b/src/options.cpp @@ -23,7 +23,6 @@ #include "err.hpp" zmq::options_t::options_t () : - type (-1), hwm (0), lwm (0), swap (0), @@ -34,7 +33,8 @@ zmq::options_t::options_t () : sndbuf (0), rcvbuf (0), requires_in (false), - requires_out (false) + requires_out (false), + traceroute (false) { } |