fea: add qos support for client

This commit is contained in:
teddyzhu15
2024-03-28 11:45:49 +08:00
parent 933f708e02
commit 10867d5921
16 changed files with 858 additions and 27 deletions

13
pkg/cache/qos.go vendored Normal file
View File

@@ -0,0 +1,13 @@
package cache
import (
"github.com/luscis/openlan/pkg/libol"
)
type qos struct {
QosConfig *libol.SafeStrMap
}
var pos = &qos{
QosConfig: libol.NewSafeStrMap(1024),
}