implement prr sender

This commit is contained in:
Lucas Clemente
2016-04-24 13:27:01 +02:00
parent 3feb288817
commit 76d4b7a931
3 changed files with 178 additions and 0 deletions

View File

@@ -17,3 +17,7 @@ const MaxPacketSize = 1452
// MaxFrameSize is the maximum size of a QUIC frame
const MaxFrameSize = MaxPacketSize - (1 + 8 + 6) /*public header*/ - 1 /*private header*/ - 12 /*crypto signature*/
// DefaultTCPMSS is the default maximum packet size used in the Linux TCP implementation.
// Used in QUIC for congestion window computations in bytes.
const DefaultTCPMSS = 1460