What is HTTP/3?

HTTP/3 is the latest version of HTTP built on the QUIC protocol for faster and more reliable connections. CloudSonic infrastructure is HTTP/3 ready as part of the Cloudflare Enterprise stack.

CloudSonic
CloudSonic
Last Updated September 10, 2026

TL;DR HTTP/3

HTTP/3 is the latest version of the Hypertext Transfer Protocol and represents the most significant change to how web data is transferred since HTTP/2. While HTTP/2 improved on HTTP/1.1 by allowing multiple requests over a single connection, it still used TCP as its underlying transport protocol. TCP has a known limitation called head-of-line blocking where packet loss on the connection stalls all other requests until the lost packet is retransmitted. HTTP/3 replaces TCP with a new protocol called QUIC, which was developed by Google and is built on UDP. QUIC eliminates head-of-line blocking entirely, establishes connections faster, and handles network switching more gracefully, which is particularly beneficial for mobile users moving between WiFi and cellular. CloudSonic infrastructure is HTTP/3 ready through the Cloudflare Enterprise network, which has supported QUIC for years. This builds on the improvements introduced in HTTP/2 and pairs naturally with edge caching and Brotli compression for maximum performance.

How HTTP/3 Works

HTTP/3 replaces the TCP transport layer that underpins HTTP/1.1 and HTTP/2 with a new protocol called QUIC. TCP requires a handshake to establish a connection before any data can be sent, and if a packet is lost in transit, TCP stops everything and waits for the lost packet to be retransmitted before continuing. This is called head-of-line blocking and it means a single lost packet delays the entire connection. QUIC is built on UDP, which does not have built-in delivery guarantees, but QUIC implements its own reliability mechanisms at the application layer. This means packet loss on one stream does not block other streams. QUIC also combines the transport and TLS handshakes into a single step, reducing the number of round trips needed to establish a secure connection from two or three down to one, or even zero for returning visitors.

Why HTTP/3 Matters for Your Website

The real world impact of HTTP/3 is most pronounced in conditions that are common for real visitors but rarely tested in lab environments: packet loss, network switching, and high latency mobile connections. In these conditions HTTP/2 suffers because TCP's head-of-line blocking means a single lost packet stalls the entire connection. HTTP/3's QUIC protocol handles packet loss at the stream level, meaning a lost packet on one stream does not affect any other stream. For a visitor on a mobile connection that experiences occasional packet loss, the difference between HTTP/2 and HTTP/3 can be the difference between a page that loads smoothly and one that stalls and feels broken. The faster connection establishment in HTTP/3 also benefits first-time visitors to your site, reducing the initial connection overhead and contributing to a lower TTFB and faster Core Web Vitals scores, particularly Largest Contentful Paint.

Frequently Asked Questions on HTTP/3

Is HTTP/3 widely supported?

Yes. HTTP/3 support is built into Chrome, Firefox, Safari, and Edge and has been for several years. Server-side support is available through Cloudflare Enterprise, which has supported QUIC since its early development. Connections automatically negotiate the best supported protocol so visitors on older software fall back to HTTP/2 transparently.

Do I need to do anything to enable HTTP/3 on my CloudSonic site?

No. HTTP/3 support comes through Cloudflare Enterprise which is active on every CloudSonic plan. Cloudflare handles the QUIC protocol negotiation at the edge automatically. Your origin server communicates with Cloudflare over HTTP/2 and Cloudflare handles the HTTP/3 connection to the visitor's browser.

What is QUIC and why does it matter?

QUIC is the transport protocol that HTTP/3 is built on, developed originally by Google and now standardised by the IETF. It runs over UDP rather than TCP and includes its own reliability, congestion control, and encryption mechanisms. The practical benefits are faster connection establishment, better performance on lossy networks, and elimination of the head-of-line blocking problem that limits HTTP/2 on unreliable connections.

Does HTTP/3 improve performance for all visitors or just some?

The improvement is most significant for visitors on mobile networks and high latency connections where packet loss is more common and connection establishment overhead is more costly. Visitors on fast stable broadband connections will see smaller improvements. Since a significant and growing proportion of web traffic comes from mobile devices, the overall impact on real world performance metrics is meaningful.