Fix initial MTU

This commit is contained in:
世界 2024-04-23 11:03:25 +08:00
parent 5eccd25e3c
commit bd48f62a7b
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 5 additions and 19 deletions

View file

@ -139,7 +139,7 @@ func newUDPPacketConn(ctx context.Context, quicConn quic.Connection, onDestroy f
cancel: cancel,
quicConn: quicConn,
data: make(chan *udpMessage, 64),
udpMTU: 1200,
udpMTU: 1200 - 3,
defragger: newUDPDefragger(),
onDestroy: onDestroy,
}