2017-09-06 20:57:07 +00:00
|
|
|
UDP file options
|
|
|
|
^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-03-07 01:40:50 +00:00
|
|
|
UDP file is of the form::
|
|
|
|
|
2018-05-02 17:55:51 +00:00
|
|
|
udp://<ip>:<port>[?<option>[&<option>]...]
|
2018-03-07 01:40:50 +00:00
|
|
|
|
|
|
|
Here is the list of supported options:
|
2017-09-06 20:57:07 +00:00
|
|
|
|
|
|
|
:reuse=0|1:
|
|
|
|
|
|
|
|
Allow or disallow reusing UDP sockets.
|
|
|
|
|
2018-05-02 17:55:51 +00:00
|
|
|
:interface=<addr>:
|
2017-09-06 20:57:07 +00:00
|
|
|
|
2018-03-06 18:09:28 +00:00
|
|
|
Multicast group interface address. Only the packets sent to this address are
|
2017-12-02 00:09:40 +00:00
|
|
|
received. Default to "0.0.0.0" if not specified.
|
2017-09-06 20:57:07 +00:00
|
|
|
|
2018-05-02 17:55:51 +00:00
|
|
|
:source=<addr>:
|
2018-03-06 18:09:28 +00:00
|
|
|
|
|
|
|
Multicast source ip address. Only the packets sent from this source address
|
2018-03-07 01:40:50 +00:00
|
|
|
are received. Enables Source Specific Multicast (SSM) if set.
|
2018-03-06 18:09:28 +00:00
|
|
|
|
2018-05-02 17:55:51 +00:00
|
|
|
:timeout=<microseconds>:
|
2017-09-06 20:57:07 +00:00
|
|
|
|
|
|
|
UDP timeout in microseconds.
|
2018-03-07 01:40:50 +00:00
|
|
|
|
|
|
|
Example::
|
|
|
|
|
|
|
|
udp://224.1.2.30:88?interface=10.11.12.13&reuse=1
|