diff options
Diffstat (limited to 'perf/cpp/local_thr.cpp')
-rw-r--r-- | perf/cpp/local_thr.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/perf/cpp/local_thr.cpp b/perf/cpp/local_thr.cpp index 7d40904..cbcc106 100644 --- a/perf/cpp/local_thr.cpp +++ b/perf/cpp/local_thr.cpp @@ -36,7 +36,13 @@ int main (int argc, char *argv []) zmq::context_t ctx (1, 1); - zmq::socket_t s (ctx, ZMQ_P2P); + zmq::socket_t s (ctx, ZMQ_SUB); + + s.setsockopt (ZMQ_SUBSCRIBE , "*", 1); + + // Add your socket options here. + // For example ZMQ_RATE, ZMQ_RECOVERY_IVL and ZMQ_MCAST_LOOP for PGM. + s.bind (bind_to); zmq::message_t msg; |