What is QUIC Protocol?
Turkish: QUIC
QUIC is a modern UDP-based transport protocol with built-in TLS 1.3 encryption that gives HTTP/3 faster connection setup and recovery.
What is QUIC?
QUIC is a modern transport protocol that runs over UDP to reduce latency in web connections. It forms the foundation of HTTP/3 and makes TLS 1.3 encryption part of the connection setup.
With TCP + TLS + HTTP/2, establishing a connection can require multiple round trips. QUIC simplifies those steps, uses connection IDs to tolerate network changes better, and runs independent streams inside one connection. As a result, packet loss in one stream does not block other streams as severely as it can with TCP.
Technical Features
- UDP foundation: Avoids depending on middleboxes that expect TCP behavior.
- Built-in encryption: Integrates TLS 1.3 into the connection model.
- Connection migration: Helps mobile devices keep a connection when moving from Wi-Fi to cellular.
- Multiple streams: Allows HTTP/3 requests to block each other less.
Business Use
Users usually experience QUIC as a faster HTTP/3-enabled site. When CDN, browser, and server support are in place, it can improve page start times, especially on mobile networks and lossy connections. Measurement still matters; not every infrastructure, firewall, or corporate network handles QUIC the same way.
HTTP/3 uses QUIC at the application layer, while UDP is the transport base QUIC builds on.