UDP
UDP (User Datagram Protocol) is a fast, connectionless way to send data over the internet without guaranteeing delivery or order. It trades reliability for low latency, making it ideal for streaming and real-time apps.
Definition
UDP (User Datagram Protocol) is a lightweight transport protocol that sends data as independent packets called datagrams, without establishing a connection or confirming delivery. Unlike TCP, it has no handshake, no acknowledgements, and no retransmission - it simply fires packets and moves on.
How it works
An application hands data to UDP, which wraps it in a small header containing source and destination ports, then passes it to IP for routing. There is no guarantee packets arrive, arrive in order, or arrive only once. This minimal overhead makes UDP extremely fast.
Why it matters for privacy and proxies
- WireGuard and modern VPNs run over UDP for speed and low latency.
- WebRTC uses UDP, which is why WebRTC leaks can expose a real IP even behind a proxy.
- SOCKS5 supports UDP association, while most HTTP proxies do not, affecting which apps you can tunnel.
Because UDP underpins streaming, gaming, DNS, and VoIP, understanding it helps you choose the right proxy or VPN protocol and avoid leaks that bypass connection-based tunnels.
Examples
A WireGuard VPN tunnel carrying encrypted traffic over UDP for low latency
A DNS query sent as a single UDP datagram to a resolver
Live video streaming and online gaming using UDP to minimize delay
Common Use Cases
Frequently Asked Questions
Keep Learning
All termsSOCKS5
SOCKS5 is the latest version of the SOCKS proxy protocol. It routes any kind of network traffic — TCP and UDP — between a client and a server through a proxy, with optional authentication and no awareness of the underlying application.
Read definitionDNS (Domain Name System)
DNS is the internet's phonebook — it translates human-readable domain names like example.com into the numeric IP addresses computers use to connect.
Read definitionWebRTC Leak
A WebRTC leak exposes your real IP address through the browser's built-in real-time communication feature — even when you are using a VPN or proxy.
Read definitionWireGuard
WireGuard is a modern, fast and lightweight VPN protocol known for its tiny codebase, strong cryptography and excellent performance.
Read definition