github.com/AbhinandanKurakure/podman/v3@v3.4.10/libpod/container_linux.go (about)

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