mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-03 23:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			213 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			213 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package netlink
 | 
						|
 | 
						|
import "github.com/vishvananda/netlink/nl"
 | 
						|
 | 
						|
// Family type definitions
 | 
						|
const (
 | 
						|
	FAMILY_ALL  = nl.FAMILY_ALL
 | 
						|
	FAMILY_V4   = nl.FAMILY_V4
 | 
						|
	FAMILY_V6   = nl.FAMILY_V6
 | 
						|
	FAMILY_MPLS = nl.FAMILY_MPLS
 | 
						|
)
 |