summaryrefslogtreecommitdiff
path: root/gr-zeromq/include/gnuradio/zeromq/req_source.h
Commit message (Collapse)AuthorAgeFilesLines
* Switch from boost pointers to std C++11 pointersThomas Habets2020-04-011-1/+1
| | | | | | | | | | | | | | | | | | | Most of this code is automated code changes: ``` set -e SUB="s/dummy/dummy/" for i in shared_ptr make_shared dynamic_pointer_cast weak_ptr enable_shared_from_this get_deleter; do SUB="$SUB;s/boost::$i/std::$i/g" done SUB="$SUB;s^#include <boost/shared_ptr.hpp>^#include <memory>^g" SUB="$SUB;s^namespace boost^namespace std^g" find . \( -name "*.cc" -o -name "*.h" -o -name "*.i" -o -name "*.cxx" -o -name "*.py" \) -print0 | xargs -0 sed -i "$SUB" ``` Only one manual change. In `./gr-fec/lib/fec_mtrx_impl.cc`, add `#include <algorithm>`.
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* clang-format: Ordering all the includesMarcus Müller2019-08-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | clang-format: ordering includes in gnuradio-runtime clang-format: ordering includes in gr-filter clang-format: ordering includes in gr-fft clang-format: ordering includes in gr-audio clang-format: ordering includes in gr-analog clang-format: ordering includes in gr-fec clang-format: ordering includes in gr-wavelet clang-format: ordering includes in gr-zeromq clang-format: ordering includes in gr-vocoder clang-format: ordering includes in gr-video-sdl clang-format: ordering includes in gr-trellis clang-format: ordering includes in gr-blocks clang-format: ordering includes in gr-digital clang-format: ordering includes in gr-uhd clang-format: ordering includes in gr-dtv clang-format: ordering includes in gr-channels clang-format: ordering includes in gr-qtgui clang_format.py: re-enable include reordering
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-29/+33
|
* gr-zeromq: Add last_endpoint function to zmq source and sink blocksBrennan Ashton2018-11-281-0/+5
| | | | | | The main reason for this is is allows you to read back the real address string in the case that port 0 is used and the OS has auto-assigned a free port.
* docs: fixed units of timeout param in all the zmq blocksMarc L2017-08-291-1/+1
|
* gr-zeromq: Big rework for performance and correctnessSylvain Munaut2016-01-271-1/+2
| | | | | | | | | | | | | | | - Use class hierarchy trying to maximize code re-use. - Dont' drop samples on receive if the output buffer doesn't have enough space. - Don't drop tags on receive by putting tags in the future. - Better metadata creation/parsing avoiding copying lots data. - Always do as much work as possible in a single call to work() to avoid scheduler overhead as long as possible. - Allow setting the high watermark to avoid older version of zeromq's default of buffering infinite messages and causing a paging thrash to/from disk when the flow graph can't keep up. Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
* docs: cleaning up some doxygen warnings and formatting.Tom Rondeau2015-03-131-6/+6
|
* zmq: all source blocks should now support tag headersTim O'Shea2014-10-271-1/+1
|
* zeromq: Remove ZMQ_NOBLOCK as we are using pollingJohannes Schmitz2014-05-091-1/+1
|
* zeromq: Timeout needs to be in milliseconds for zmq 3.0, close socketsJohannes Schmitz2014-05-091-1/+1
| | | | correctly, cleanup
* zeromq: Add missing timeout and blocking parameters and pollingJohannes Schmitz2014-05-081-1/+1
|
* zeromq: Fix doxygen and memcpy for vlenJohannes Schmitz2014-05-071-1/+1
|
* zeromq: renamed source_reqrep to req_sourceCamilo Solano2014-05-061-0/+61