diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-01-15 07:09:03 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-01-18 13:22:09 +0100 |
commit | 12670a017ddb14fbf4a932799051dcfe21dd6c78 (patch) | |
tree | 43675f68329676a1ff84f8a26bab8733be224c0b /doc/advanced.mux | |
parent | c1d33594ca424b56a34200a6e525cdb1317bad69 (diff) | |
download | dabmux-12670a017ddb14fbf4a932799051dcfe21dd6c78.tar.gz dabmux-12670a017ddb14fbf4a932799051dcfe21dd6c78.tar.bz2 dabmux-12670a017ddb14fbf4a932799051dcfe21dd6c78.zip |
Common 6b5db53: Update zmq.hpp, TCPReceiveServer, EDI decoder and output
Diffstat (limited to 'doc/advanced.mux')
-rw-r--r-- | doc/advanced.mux | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/doc/advanced.mux b/doc/advanced.mux index b7ff69e..3aa3a22 100644 --- a/doc/advanced.mux +++ b/doc/advanced.mux @@ -389,19 +389,24 @@ outputs { ; example for unicast EDI over UDP ; for unicast EDI, do not set source protocol udp - destination "192.168.23.23" sourceport 13000 + destination "192.168.23.23" + port 12000 + + ; For compatibility: if port is not specified in the destination itself, + ; it is taken from the parent 'destinations' block. } example_multicast { ; example for multicast EDI, the source IP is required ; so that the data is sent on the correct ethernet interface protocol udp - destination "232.20.10.1" source "192.168.0.50" + sourceport 13000 + destination "232.20.10.1" + port 12000 ; The multicast TTL has to be adapted according to your network ttl 1 - sourceport 13000 } example_tcp { ; example for EDI TCP server. TCP is reliable, so it is counterproductive to @@ -420,19 +425,11 @@ outputs { } ; The settings below apply to all destinations - ; The destination port cannot be set independently for - ; different outputs because it is encoded in the transport - ; header of the PFT layer. - ; Necessary when using UDP, optional when only using TCP. - port 12000 ; Enable the PFT subsystem. If false, AFPackets are sent. ; PFT is not necessary when using TCP. enable_pft false - enable_transport_addressing true - ; Enables the Addr flag in PFT and sets Source and Dest fields. - ; How many lost fragments can be recovered by Reed-Solomon. ; Requires enable_pft true. ; |