diff options
Diffstat (limited to 'libpod/container.go')
-rw-r--r-- | libpod/container.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpod/container.go b/libpod/container.go index 456fc412d..77c94c7df 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -3,6 +3,7 @@ package libpod import ( "fmt" "net" + "os" "path/filepath" "time" @@ -106,6 +107,9 @@ type Container struct { valid bool lock storage.Locker runtime *Runtime + + rootlessSlirpSyncR *os.File + rootlessSlirpSyncW *os.File } // containerState contains the current state of the container |