diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-07-28 11:54:32 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-07-28 11:54:32 +0200 |
commit | a1921a1a967b65c99a830141e9faaecd77b0f317 (patch) | |
tree | 193c00c382f1389f61a01870c937802e7e49212c /doc | |
parent | 9aee86aace7d6c504b410c972d0ab5065f7f7b94 (diff) | |
download | dabmux-a1921a1a967b65c99a830141e9faaecd77b0f317.tar.gz dabmux-a1921a1a967b65c99a830141e9faaecd77b0f317.tar.bz2 dabmux-a1921a1a967b65c99a830141e9faaecd77b0f317.zip |
Add new zeromq config format
This gives the choice for the transmission of the metadata,
and the enabling of the TAI downloader is also triggered
appropriately
Diffstat (limited to 'doc')
-rw-r--r-- | doc/advanced.mux | 4 | ||||
-rw-r--r-- | doc/example.mux | 16 |
2 files changed, 15 insertions, 5 deletions
diff --git a/doc/advanced.mux b/doc/advanced.mux index 801857b..c3e216a 100644 --- a/doc/advanced.mux +++ b/doc/advanced.mux @@ -342,8 +342,8 @@ outputs { ; Please see doc/dab_output_formats.txt stdout "fifo:///dev/stdout?type=raw" - ; ZeroMQ output example - ; Listen on all interfaces, on port 9100 + ; Legacy format for ZeroMQ output example. See example.mux + ; for newer format. ;zmq "zmq+tcp://*:9100" ; Throttle output to real-time (one ETI frame every 24ms) diff --git a/doc/example.mux b/doc/example.mux index d764be3..ad2f3c8 100644 --- a/doc/example.mux +++ b/doc/example.mux @@ -167,10 +167,20 @@ outputs { ; Output RAW ETI NI to standard output stdout "fifo:///dev/stdout?type=raw" - ; ZeroMQ output example + ; ZeroMQ output example, new configuration format. Several + ; zeromq blocks can be added here. ; This output does not back-pressure the multiplexer. - ; Listen on all interfaces, on port 9100 - ;zmq "zmq+tcp://*:9100" + zeromq { + ; Listen on all interfaces, on port 9100 + endpoint "tcp://*:9100" + + ; Transmit backward compatible metadata containing + ; EDI time and UTC offset when TIST is enabled. + ; WARNING! requires ODR-DabMux to be compiled with + ; EDI output, and this will enable leap second download + ; as for the EDI output! + allowmetadata true + } ; Output ETI-over-TCP. This is like piping a RAW ETI NI data stream ; into a TCP socket, except that the output can handle simultaneous |