From ef87f15ecb101d4e73c75463e2749f90a4e47239 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Wed, 30 Dec 2020 12:53:33 +0800 Subject: [PATCH] increase the maximum size of DATAGRAM frames --- internal/protocol/params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/protocol/params.go b/internal/protocol/params.go index f5b56eaa..d3aa90f5 100644 --- a/internal/protocol/params.go +++ b/internal/protocol/params.go @@ -135,7 +135,7 @@ const MaxAckFrameSize ByteCount = 1000 // MaxDatagramFrameSize is the maximum size of a DATAGRAM frame as defined in // https://datatracker.ietf.org/doc/draft-pauly-quic-datagram/. // The size is chosen such that a DATAGRAM frame fits into a QUIC packet. -const MaxDatagramFrameSize ByteCount = 1200 +const MaxDatagramFrameSize ByteCount = 1220 // DatagramRcvQueueLen is the length of the receive queue for DATAGRAM frames. // See https://datatracker.ietf.org/doc/draft-pauly-quic-datagram/.