diff options
author | Tim O'Shea <tim.oshea753@gmail.com> | 2014-10-27 16:25:16 -0400 |
---|---|---|
committer | Tim O'Shea <tim.oshea753@gmail.com> | 2014-10-27 16:25:16 -0400 |
commit | 6a3efa633309fff2834321dfbadb343064b0ab50 (patch) | |
tree | 3685ba3fd87ea670df6e1dd35f3ccf30d04bbeab /gr-zeromq/lib/sub_source_impl.h | |
parent | ffad094471e749351aa09cbd149d53a7a0e77a61 (diff) |
zmq: default to not pass tags (compatible wire format)
Diffstat (limited to 'gr-zeromq/lib/sub_source_impl.h')
-rw-r--r-- | gr-zeromq/lib/sub_source_impl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-zeromq/lib/sub_source_impl.h b/gr-zeromq/lib/sub_source_impl.h index 44647527b1..f52829463e 100644 --- a/gr-zeromq/lib/sub_source_impl.h +++ b/gr-zeromq/lib/sub_source_impl.h @@ -37,9 +37,10 @@ namespace gr { int d_timeout; // microseconds, -1 is blocking zmq::context_t *d_context; zmq::socket_t *d_socket; + bool d_pass_tags; public: - sub_source_impl(size_t itemsize, size_t vlen, char *address, int timeout); + sub_source_impl(size_t itemsize, size_t vlen, char *address, int timeout, bool pass_tags=false); ~sub_source_impl(); int work(int noutput_items, |