mirror of
				https://github.com/containers/podman.git
				synced 2025-11-04 17:07:20 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			368 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			368 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build linux
 | 
						|
// +build linux
 | 
						|
 | 
						|
package libpod
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/containernetworking/plugins/pkg/ns"
 | 
						|
)
 | 
						|
 | 
						|
type containerPlatformState struct {
 | 
						|
	// NetNSPath is the path of the container's network namespace
 | 
						|
	// Will only be set if config.CreateNetNS is true, or the container was
 | 
						|
	// told to join another container's network namespace
 | 
						|
	NetNS ns.NetNS `json:"-"`
 | 
						|
}
 |