Skip to content

The UDP Protocol

New Course Coming Soon:

Get Really Good at Git

A high level overview of the User Datagram Protocol

UDP, User Datagram Protocol, is a transfer protocol, an alternative to TCP.

Its main difference from TCP is that it’s connectionless.

This implies that it’s faster, each packet sent is more lightweight, as it does not contain all the information needed in TCP, and it does have a lighter handshake process.

The drawback is that UDP is not reliable as TCP.

In TCP, if a packet gets lost, the protocol is able to handle it and the packet is re-sent.

In UDP, this is not built-in into the protocol, and must be handled at a higher level (built on top of it). There is no built-in check to control if a packet was received, and if it is received correctly.

UDP was defined in RFC 768 in 1980.

Some of the most notable application protocols that rely on the UDP layer are DNS and DHCP, and more importantly is the base layer of HTTP/3, the next version of HTTP.

The UDP protocol uses ports to allow communication between processes, like with TCP.

Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching Summer 2024. Join the waiting list!

Here is how can I help you: