blob: 823a590dd5123111742ffd28d3ca0f7d8e9abda9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// +build linux
package libpod
import (
"github.com/containernetworking/plugins/pkg/ns"
)
type containerPlatformState struct {
// NetNSPath is the path of the container's network namespace
// Will only be set if config.CreateNetNS is true, or the container was
// told to join another container's network namespace
NetNS ns.NetNS `json:"-"`
}
|