Files
runc/configs/interface_priority_map.go
T
2015-05-14 14:47:07 +08:00

15 lines
236 B
Go

package configs
import (
"fmt"
)
type IfPrioMap struct {
Interface string `json:"interface"`
Priority int64 `json:"priority"`
}
func (i *IfPrioMap) CgroupString() string {
return fmt.Sprintf("%s %d", i.Interface, i.Priority)
}