From 6a398e159390c8039b48cca5986f136c0c882d8c Mon Sep 17 00:00:00 2001 From: Alexandre Bonfitto Date: Mon, 11 Mar 2024 18:08:21 -0300 Subject: [PATCH] article: text changes --- src/posts/2024/03/http2-and-http3-explained.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posts/2024/03/http2-and-http3-explained.md b/src/posts/2024/03/http2-and-http3-explained.md index 4703a26..dea8722 100644 --- a/src/posts/2024/03/http2-and-http3-explained.md +++ b/src/posts/2024/03/http2-and-http3-explained.md @@ -176,7 +176,7 @@ sequenceDiagram Server-->>-Client: res1: #9993;1/1 + res2: #9993;1/2 ``` -The head-of-line blocking related to TLS (SSL) happens on TCP because the cryptography is usually applied over the entire message content, meaning that all data (all packets) needs to received for the decryption to happen. With QUIC, the cryptography is individual for each QUIC packet, that is decrypted on arrival, without having the need to receive all packets first. +The head-of-line blocking related to TLS (SSL) happens on TCP because the cryptography is usually applied over the entire message content, meaning that all data (all packets) needs to be received for the decryption to happen. With QUIC, the cryptography is individual for each QUIC packet, that is decrypted on arrival, without having to receive all packets beforehand. ## Comparison table