diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-10-07 16:30:08 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-10-07 16:30:08 +0200 |
commit | 17e6a246149c11bac667a233fff1a33a1d06a1fb (patch) | |
tree | 886061498f6f8b36be2b219e07930a15147b5d7a /doc/example.mux | |
parent | b0f2bade7a34aaff6573c81d9875d321dd889370 (diff) | |
download | dabmux-17e6a246149c11bac667a233fff1a33a1d06a1fb.tar.gz dabmux-17e6a246149c11bac667a233fff1a33a1d06a1fb.tar.bz2 dabmux-17e6a246149c11bac667a233fff1a33a1d06a1fb.zip |
Add ZeroMQ RC
Diffstat (limited to 'doc/example.mux')
-rw-r--r-- | doc/example.mux | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/example.mux b/doc/example.mux index 5a65829..3f2d6f4 100644 --- a/doc/example.mux +++ b/doc/example.mux @@ -50,6 +50,16 @@ remotecontrol { ; Set the port to 0 to disable the server telnetport 12721 + ; The remote control is also accessible through a ZMQ REQ/REP socket, + ; and is useful for machine-triggered interactions. It supports the + ; same commands as the telnet RC. + ; The example code in doc/zmq_remote.py illustrates how to use this rc. + ; To disable the zeromq endpoint, remove the zmqendpoint line. + ; By specifying "lo" in the URL, we make the server only accessible + ; from localhost. You can write tcp://*:12722 to make it accessible + ; on all interfaces. + zmqendpoint tcp://lo:12722 + ; the remote control server makes use of the unique identifiers ; for the subchannels, services and components. Make sure you ; chose them so that you can identify them. |