From d5c41099945fa687fcc2003de0fd0abc9153ac1e Mon Sep 17 00:00:00 2001 From: "sumit shinde ( Roni )" <110285294+sumitshinde-84@users.noreply.github.com> Date: Wed, 15 May 2024 12:49:32 +0530 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Zeger-Jan van de Weg --- src/_includes/core-nodes/udp-in-use-case.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/_includes/core-nodes/udp-in-use-case.md b/src/_includes/core-nodes/udp-in-use-case.md index ec3cefd4d3..1f7427444c 100644 --- a/src/_includes/core-nodes/udp-in-use-case.md +++ b/src/_includes/core-nodes/udp-in-use-case.md @@ -2,9 +2,9 @@ The UDP-In node in Node-RED enables the reception of UDP messages from remote devices or services. It acts as a listener, waiting for incoming UDP packets on a specified port. This functionality is crucial for real-time applications, such as IoT data ingestion and network communication. Whether you're receiving sensor data from IoT devices or communicating with other networked systems, the UDP-In node seamlessly integrates UDP communication into your Node-RED workflows, providing a lightweight and efficient solution for data reception. -### What is Udp? +### 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 delivery of data packets. For more information refer to [UDP MDN Docs](https://developer.mozilla.org/en-US/docs/Glossary/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 delivery of data packets. For more information refer to [UDP MDN Docs](https://developer.mozilla.org/en-US/docs/Glossary/UDP). ## Configuring UDP-In Node