This commit is contained in:
Dongho Kim
2026-05-17 16:33:43 +02:00
commit a221870b70
20 changed files with 1285 additions and 0 deletions
+11
View File
@@ -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)
})
}