tryhackme: Packets & Frames: UDP/IP
UDP: User Datagram Protocol. UDP is a stateless protocol that does not require a constant connection between the two devices for data to be sent. UDP is used in applications that can tolerate data being lost, or in an unstable connections is not the end-all. ---------------------------------------------------------------------------------------------------------------------------- Advantages of UDP: 1. UDP is much faster than TCP. 2. UDP leaves the application to decide if there is any control over how quickly packets are sent. 3. UDP does not reserve a continuous connection on a device as TCP does. ---------------------------------------------------------------------------------------------------------------------------- Disadvantages of UDP 1. UDP does not care if the data received or not. 2. It is quite flexible to software developers in this sense. 3. This means that unstable connections result in a terrible experience for the user. --------------------...