diff options
author | Camilo Solano <solano@ti.rwth-aachen.de> | 2014-05-06 18:38:43 +0200 |
---|---|---|
committer | Camilo Solano <solano@ti.rwth-aachen.de> | 2014-05-06 18:38:43 +0200 |
commit | edd1405c7f2bcd79e8fb5aa72189e13a37c1ed02 (patch) | |
tree | b177320d78a4fbb897d2c60daa6787078967412e /gr-zeromq/include/gnuradio | |
parent | aec45a60b208d045daf766b18631159094cb1042 (diff) |
Add vlen
Diffstat (limited to 'gr-zeromq/include/gnuradio')
-rw-r--r-- | gr-zeromq/include/gnuradio/zeromq/pull_source.h | 2 | ||||
-rw-r--r-- | gr-zeromq/include/gnuradio/zeromq/push_sink.h | 2 | ||||
-rw-r--r-- | gr-zeromq/include/gnuradio/zeromq/rep_sink.h | 2 | ||||
-rw-r--r-- | gr-zeromq/include/gnuradio/zeromq/source_reqrep.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/gr-zeromq/include/gnuradio/zeromq/pull_source.h b/gr-zeromq/include/gnuradio/zeromq/pull_source.h index 46d861b270..12c1005174 100644 --- a/gr-zeromq/include/gnuradio/zeromq/pull_source.h +++ b/gr-zeromq/include/gnuradio/zeromq/pull_source.h @@ -50,7 +50,7 @@ namespace gr { * \param timeout Receive timeout in seconds, default is 100ms, 1us increments * */ - static sptr make(size_t itemsize, char *address, float timeout=0.1); + static sptr make(size_t itemsize, size_t vlen, char *address, float timeout=0.1); }; } // namespace zeromq diff --git a/gr-zeromq/include/gnuradio/zeromq/push_sink.h b/gr-zeromq/include/gnuradio/zeromq/push_sink.h index cffe2d3154..2f68e44ca0 100644 --- a/gr-zeromq/include/gnuradio/zeromq/push_sink.h +++ b/gr-zeromq/include/gnuradio/zeromq/push_sink.h @@ -54,7 +54,7 @@ namespace gr { * \param blocking Indicate whether blocking sends should be used, default true. * */ - static sptr make(size_t itemsize, char *address, bool blocking=true); + static sptr make(size_t itemsize, size_t vlen, char *address, bool blocking=true); }; } // namespace zeromq diff --git a/gr-zeromq/include/gnuradio/zeromq/rep_sink.h b/gr-zeromq/include/gnuradio/zeromq/rep_sink.h index dcae967f32..9c2cafba12 100644 --- a/gr-zeromq/include/gnuradio/zeromq/rep_sink.h +++ b/gr-zeromq/include/gnuradio/zeromq/rep_sink.h @@ -53,7 +53,7 @@ namespace gr { * \param blocking Indicate whether blocking sends should be used, default true. * */ - static sptr make(size_t itemsize, char *address, float timeout=0.1, bool blocking=true); + static sptr make(size_t itemsize, size_t vlen, char *address, float timeout=0.1, bool blocking=true); }; } // namespace zeromq diff --git a/gr-zeromq/include/gnuradio/zeromq/source_reqrep.h b/gr-zeromq/include/gnuradio/zeromq/source_reqrep.h index f0b9c3a2d2..54d4b8da21 100644 --- a/gr-zeromq/include/gnuradio/zeromq/source_reqrep.h +++ b/gr-zeromq/include/gnuradio/zeromq/source_reqrep.h @@ -47,7 +47,7 @@ namespace gr { * class. zeromq::source_reqrep::make is the public interface for * creating new instances. */ - static sptr make(size_t itemsize, char *address); + static sptr make(size_t itemsize, size_t vlen, char *address); }; } // namespace zeromq |