From 9c28d22205bb6c073f5f016c6fd7f06443e8a640 Mon Sep 17 00:00:00 2001 From: otbutz Date: Tue, 30 Apr 2024 16:55:17 +0200 Subject: [PATCH] Use 7MiB buffer size --- etc/linux-sysctl/30-syncthing.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etc/linux-sysctl/30-syncthing.conf b/etc/linux-sysctl/30-syncthing.conf index 6a364618b47..08cfb20f51c 100644 --- a/etc/linux-sysctl/30-syncthing.conf +++ b/etc/linux-sysctl/30-syncthing.conf @@ -1,4 +1,4 @@ -# Increase maximum socket buffer sizes to 2.5MiB for QUIC connections +# Increase maximum socket buffer sizes to 7MiB for QUIC connections # see https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes -net.core.rmem_max = 2621440 -net.core.wmem_max = 2621440 +net.core.rmem_max = 7340032 +net.core.wmem_max = 7340032