raise tcp_wmem[2] for update servers

Linux recently raised the default tcp_rmem[2] to 32MiB so it makes sense
to match it on the sending side to maximize bandwidth.
This commit is contained in:
Daniel Micay 2025-08-31 02:26:14 -04:00
parent 04479af3ad
commit e5ae9ca13b

View file

@ -109,9 +109,9 @@ declare -Ar hosts_reserved_ports=(
) )
declare -Ar hosts_tcp_wmem_max=( declare -Ar hosts_tcp_wmem_max=(
[0.releases.grapheneos.org]=16777216 [0.releases.grapheneos.org]=33554432
[1.releases.grapheneos.org]=16777216 [1.releases.grapheneos.org]=33554432
[2.releases.grapheneos.org]=16777216 [2.releases.grapheneos.org]=33554432
[matrix.grapheneos.org]=16777216 [matrix.grapheneos.org]=16777216
) )