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
+9
View File
@@ -0,0 +1,9 @@
package scheduler
import quic "github.com/AeonDave/mp-quic-go"
func init() {
Register("roundrobin", func() quic.PathScheduler {
return quic.NewRoundRobinScheduler()
})
}