podman/libpod/container_freebsd.go

13 lines
324 B
Go

//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:"-"`
}