mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
reduce max DATAGRAM frame size, so that DATAGRAMs fit in IPv6 packets (#3581)
This commit is contained in:
parent
1f6a9ecafd
commit
d03f9c2a4f
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ const MaxAckFrameSize ByteCount = 1000
|
||||||
|
|
||||||
// MaxDatagramFrameSize is the maximum size of a DATAGRAM frame (RFC 9221).
|
// MaxDatagramFrameSize is the maximum size of a DATAGRAM frame (RFC 9221).
|
||||||
// The size is chosen such that a DATAGRAM frame fits into a QUIC packet.
|
// The size is chosen such that a DATAGRAM frame fits into a QUIC packet.
|
||||||
const MaxDatagramFrameSize ByteCount = 1220
|
const MaxDatagramFrameSize ByteCount = 1200
|
||||||
|
|
||||||
// DatagramRcvQueueLen is the length of the receive queue for DATAGRAM frames (RFC 9221)
|
// DatagramRcvQueueLen is the length of the receive queue for DATAGRAM frames (RFC 9221)
|
||||||
const DatagramRcvQueueLen = 128
|
const DatagramRcvQueueLen = 128
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue