diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/example.ini | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/doc/example.ini b/doc/example.ini index 098765e..7fa0721 100644 --- a/doc/example.ini +++ b/doc/example.ini @@ -39,13 +39,27 @@ loop=0 ;max_frames_queued=100 ; EDI input. -; Listen for EDI data on a given UDP port +; Listen for EDI data on a given UDP port, unicast or multicast. ;transport=edi -;source=udp://:12002 +; +; Supported syntax for the source setting: +; Bind to default interface and receive data from port 12000 +;source=udp://:12000 +; +; Bind to interface with IP:192.168.1.22 and receive data from port 12000 +;source=udp://192.168.1.22:12000 +; +; Bind to interface with IP:192.168.1.22 and join multicast group: +; 239.100.101.22 and receive data from port 12000 +;source=udp://192.168.1.22@239.100.101.22:12000 +; +; Bind to default interafce (which routes to multicast) and join multicast +; group: 239.100.101.22 and receive data from port 12000 +;source=udp://@239.100.101.22:12000 +; ; Maximum delay in milliseconds that the EDI input is willing to wait ; before it timeouts ;edi_max_delay=240 -; No support yet for multicast, should work with and without PFT ; This EDI implementation does not support EDI Packet Resend |