You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the certificate is very small, the first packet will contain an Initial, Handshake and 1-RTT packet. This will cause a problem cause by padding the Initial, which we introduced in #2840.
In this case, we can't pad by appending 0s to the end of the packet, as the 1-RTT packet doesn't have a length field and always extends to the end of the packet. This will lead to the first packet ending up undecryptable for the client.
Unfortunately, the congestion controller on the server will notice this: As the the first packet is never acknowledged, the server will declare it lost, and start the connection in recovery. This is bad for throughput.
The text was updated successfully, but these errors were encountered:
If the certificate is very small, the first packet will contain an Initial, Handshake and 1-RTT packet. This will cause a problem cause by padding the Initial, which we introduced in #2840.
In this case, we can't pad by appending 0s to the end of the packet, as the 1-RTT packet doesn't have a length field and always extends to the end of the packet. This will lead to the first packet ending up undecryptable for the client.
Unfortunately, the congestion controller on the server will notice this: As the the first packet is never acknowledged, the server will declare it lost, and start the connection in recovery. This is bad for throughput.
The text was updated successfully, but these errors were encountered: