summaryrefslogtreecommitdiff
path: root/src/options.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-02-12 19:42:35 +0100
committerMartin Sustrik <sustrik@250bpm.com>2010-02-12 19:42:35 +0100
commit313b5dfadd8753b341197cc109bce40e08856cf6 (patch)
tree28cb7ec6f955ca12a28a7cf58fc5751d94227bc7 /src/options.hpp
parent96e0442332fcc680ddafdcaa8fcbdc6acd992c76 (diff)
Multi-hop REQ/REP, part III., change 'type' in options to simple 'traceroute' flag
Diffstat (limited to 'src/options.hpp')
-rw-r--r--src/options.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/options.hpp b/src/options.hpp
index dbe3701..f9ff6e4 100644
--- a/src/options.hpp
+++ b/src/options.hpp
@@ -34,9 +34,6 @@ namespace zmq
int setsockopt (int option_, const void *optval_, size_t optvallen_);
- // Type of the associated socket. One of the constants defined in zmq.h
- int type;
-
int64_t hwm;
int64_t lwm;
int64_t swap;
@@ -59,6 +56,9 @@ namespace zmq
// provided by the specific socket type.
bool requires_in;
bool requires_out;
+
+ // If true, socket requires tracerouting the messages.
+ bool traceroute;
};
}