diff options
author | Matthias P. Braendli (think) <matthias@mpb.li> | 2013-11-10 21:50:12 +0100 |
---|---|---|
committer | Matthias P. Braendli (think) <matthias@mpb.li> | 2013-11-10 21:50:12 +0100 |
commit | 5d965e80be2e6ab62bc82fb2e0d4d472153ad241 (patch) | |
tree | 5add36f337b0de524b3d098f0b1fcc8d68aba0d7 /doc/example.ini | |
parent | 4f9a01a80570437b86e69eb0542b13df9a20743d (diff) | |
download | dabmod-5d965e80be2e6ab62bc82fb2e0d4d472153ad241.tar.gz dabmod-5d965e80be2e6ab62bc82fb2e0d4d472153ad241.tar.bz2 dabmod-5d965e80be2e6ab62bc82fb2e0d4d472153ad241.zip |
crc-dabmod: add ZeroMQ input module
Diffstat (limited to 'doc/example.ini')
-rw-r--r-- | doc/example.ini | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/doc/example.ini b/doc/example.ini index f76b7ad..8f61b24 100644 --- a/doc/example.ini +++ b/doc/example.ini @@ -1,16 +1,28 @@ ; Sample configuration file for CRC-DABMOD [remotecontrol] +; enable the telnet remote control on localhost:2121 +; Since this is totally unsecure telnet, the software +; will only listen on the local loopback interface. +; To get secure remote access, use SSH port forwarding telnet=1 telnetport=2121 [log] +; Write to a logfile or to syslog. +; Setting filename to stderr is very useful during tests and development syslog=0 filelog=1 filename=/dev/stderr [input] -filename=/dev/stdin +; A file or fifo input is using transport=file +transport=file +source=/dev/stdin + +; When recieving data using ZeroMQ, the source is the URI to be used +;transport=zeromq +;source=tcp://localhost:8080 loop=1 [modulator] |