Merge pull request #452 from 9seconds/tcp-bbr

Use TCP BBR in a best-effort mode
This commit is contained in:
Sergei Arkhipov
2026-04-07 15:33:27 +02:00
committed by GitHub
3 changed files with 28 additions and 0 deletions
+2
View File
@@ -23,5 +23,7 @@ func setCommonSocketOptions(conn *net.TCPConn, keepAliveConfig net.KeepAliveConf
return fmt.Errorf("cannot setup SO_REUSEADDR/PORT: %w", err)
}
setCongestionControl(rawConn)
return nil
}