first
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package scheduler
|
||||
|
||||
import quic "github.com/AeonDave/mp-quic-go"
|
||||
|
||||
func init() {
|
||||
Register("minrtt", func() quic.PathScheduler {
|
||||
// rttBias=0.8 favors lower RTT paths while still considering load balance.
|
||||
// Adjust this value: 1.0=pure RTT, 0.0=pure load balancing.
|
||||
return quic.NewMinRTTScheduler(0.8)
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user