UDP Sink: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Category:Block Docs Category:Stub Docs This is the template for the "Page-per-block Docs". This first section should describe what the block...") |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:Block Docs]] | [[Category:Block Docs]] | ||
Write stream to an UDP socket. | |||
== Parameters == | |||
; IP Address | |||
: The name or IP address of the transmitting host; can be NULL, None, or "0.0.0.0" to allow reading from any interface on the host | |||
; Port | |||
: The port number on which to receive data; use 0 to have the system assign an unused port number | |||
; | ; Payload Size | ||
: UDP payload size by default set to 1472 = (1500 MTU - (8 byte UDP header) - (20 byte IP header)) | |||
; | ; Null Packet is EOF | ||
: | : Interpret zero-length packet as EOF (default: true) | ||
== Example Flowgraph == | == Example Flowgraph == | ||
== Source Files == | == Source Files == |
Revision as of 21:33, 2 September 2019
Write stream to an UDP socket.
Parameters
- IP Address
- The name or IP address of the transmitting host; can be NULL, None, or "0.0.0.0" to allow reading from any interface on the host
- Port
- The port number on which to receive data; use 0 to have the system assign an unused port number
- Payload Size
- UDP payload size by default set to 1472 = (1500 MTU - (8 byte UDP header) - (20 byte IP header))
- Null Packet is EOF
- Interpret zero-length packet as EOF (default: true)
Example Flowgraph
Source Files
- C++ files
- TODO
- Header files
- TODO
- Public header files
- TODO
- Block definition
- TODO