summaryrefslogtreecommitdiff
path: root/libpod/container_freebsd.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-08-23 13:27:50 -0400
committerGitHub <noreply@github.com>2022-08-23 13:27:50 -0400
commit3bcd8047cff076d34887bd3be7ed0e5701a41a02 (patch)
treec9c88b6e9e1d39e857719f2163fb582bb51dbc18 /libpod/container_freebsd.go
parentee2f8155cc85705787900db71f4154d358bd419d (diff)
parent8f797ab66166ec99d0eff0bb0aed997bb1876c5d (diff)
downloadpodman-3bcd8047cff076d34887bd3be7ed0e5701a41a02.tar.gz
podman-3bcd8047cff076d34887bd3be7ed0e5701a41a02.tar.bz2
podman-3bcd8047cff076d34887bd3be7ed0e5701a41a02.zip
Merge pull request #15425 from dfr/freebsd-boltdb
libpod: Add definition of containerPlatformState for FreeBSD
Diffstat (limited to 'libpod/container_freebsd.go')
-rw-r--r--libpod/container_freebsd.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/libpod/container_freebsd.go b/libpod/container_freebsd.go
new file mode 100644
index 000000000..f9fbc4daa
--- /dev/null
+++ b/libpod/container_freebsd.go
@@ -0,0 +1,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:"-"`
+}