mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 13:07:39 +03:00
18 lines
455 B
Go
18 lines
455 B
Go
package congestion
|
|
|
|
import (
|
|
"github.com/apernet/hysteria/core/v2/internal/congestion/bbr"
|
|
"github.com/apernet/hysteria/core/v2/internal/congestion/brutal"
|
|
"github.com/apernet/quic-go"
|
|
)
|
|
|
|
func UseBBR(conn quic.Connection) {
|
|
conn.SetCongestionControl(bbr.NewBbrSender(
|
|
bbr.DefaultClock{},
|
|
bbr.GetInitialPacketSize(conn.RemoteAddr()),
|
|
))
|
|
}
|
|
|
|
func UseBrutal(conn quic.Connection, tx uint64) {
|
|
conn.SetCongestionControl(brutal.NewBrutalSender(tx))
|
|
}
|