So if the sender could packet an entire website in that window,
the receiver would be able to load the website in 120 ms rather
than 180 ms or more (saving at least one round trip time).
I think that’s reasonable for a small static blog:
1 character / byte * 5 words / character * 500 words = 2500 bytes
I honestly don’t have a good estimate for the size of HTTP headers,
HTML, CSS, etc. But I can’t imagine it being more than 2500 bytes.
So if each component is 2500, then 2500 * 4 = 10000 bytes = 10 KB!
We could send the entire page in the initial congestion window.
Let’s check the math by looking at the size of my blog:
I’m very happy to send imagines and JavaScript animations,
but the font is way more than I thought! I might have to go through
some of the standard fonts again.
Solution
5 round trips for client to receive first HTML byte from server:
1 DNS - ignored because often cached or close by
1 TCP - SYN, SYN+ACK (next is ACK and TLS handshake at the same time)
Example: at 60 ms RTT from US coast-to-coast:
that’s 300 ms to first HTML byte.
And you can only receive 14.4 KB of data until you have to send the first ACK,
which is another 60 ms RTT for set of data
(assuming no congestion, the server should sent 28.8 KB, doubling each round trip
according to it’s congestion control algorithm).