diff options
author | Tim O'Shea <tim.oshea753@gmail.com> | 2014-10-27 21:21:47 -0400 |
---|---|---|
committer | Tim O'Shea <tim.oshea753@gmail.com> | 2014-10-27 21:21:47 -0400 |
commit | b161a35d47f4143b8fe460fee9ffd38a348d08e3 (patch) | |
tree | e18e23c4a55bd54db29d43ad9b90b9d98688fb38 /gr-zeromq/lib/req_source_impl.h | |
parent | 169a6c796d7fd3ff5dfc5114e38e6a05000068d5 (diff) |
zmq: all source blocks should now support tag headers
Diffstat (limited to 'gr-zeromq/lib/req_source_impl.h')
-rw-r--r-- | gr-zeromq/lib/req_source_impl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-zeromq/lib/req_source_impl.h b/gr-zeromq/lib/req_source_impl.h index f61b1d1ce4..d37d73b525 100644 --- a/gr-zeromq/lib/req_source_impl.h +++ b/gr-zeromq/lib/req_source_impl.h @@ -37,9 +37,10 @@ namespace gr { int d_timeout; zmq::context_t *d_context; zmq::socket_t *d_socket; + bool d_pass_tags; public: - req_source_impl(size_t itemsize, size_t vlen, char *address, int timeout); + req_source_impl(size_t itemsize, size_t vlen, char *address, int timeout, bool pass_tags=false); ~req_source_impl(); int work(int noutput_items, |