Skip to content

Commit

Permalink
Update udp-out-use-case.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sumitshinde-84 authored May 15, 2024
1 parent 0ff3e90 commit f4fc16d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/_includes/core-nodes/udp-out-use-case.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

The udp-out node in Node-RED is a node used for sending UDP messages to a specified network destination. When you add a udp-out node to your Node-RED flow, you configure it with the IP address and port of the destination device or service. Then, any messages received by the udp-out node are sent as UDP packets to that destination. This node is particularly useful for applications where real-time communication or lightweight message transmission is required.

### What is Udp?

UDP (User Datagram Protocol) is a connectionless protocol in the Internet Protocol suite. It transmits data packets, or datagrams, without establishing a connection, prioritizing speed over reliability. Commonly used for real-time applications like video streaming, online gaming, and VoIP. UDP's simplicity reduces latency but doesn't guarantee the delivery of data packets. For more information refer to [UDP MDN Docs](https://developer.mozilla.org/en-US/docs/Glossary/UDP).
For more information on UDP refer to [What is UDP](/node-red/core-nodes/udp-in/#what-is-udp)

## Configuring UDP-Out Node

Expand Down

0 comments on commit f4fc16d

Please sign in to comment.