mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
4949da46f1
- [CVE-2019-19921](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-19921) See https://github.com/opencontainers/runc/releases/tag/v1.0.0-rc10
14 lines
309 B
Go
14 lines
309 B
Go
package libcontainer
|
|
|
|
import (
|
|
"github.com/opencontainers/runc/libcontainer/cgroups"
|
|
"github.com/opencontainers/runc/libcontainer/intelrdt"
|
|
"github.com/opencontainers/runc/types"
|
|
)
|
|
|
|
type Stats struct {
|
|
Interfaces []*types.NetworkInterface
|
|
CgroupStats *cgroups.Stats
|
|
IntelRdtStats *intelrdt.Stats
|
|
}
|