summaryrefslogtreecommitdiff
path: root/libpod/container_freebsd.go
blob: f9fbc4daaa231aa374e8cf87b55bbeee5f9f3074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//go:build freebsd
// +build freebsd

package libpod

type containerPlatformState struct {
	// NetworkJail is the name of the container's network VNET
	// jail.  Will only be set if config.CreateNetNS is true, or
	// the container was told to join another container's network
	// namespace.
	NetworkJail string `json:"-"`
}