mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-03 23:40:03 +00:00 
			
		
		
		
	Signed-off-by: Andrew Sy Kim <kiman@vmware.com> Co-authored-by: Moriadry <preciousdp11@gmail.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			436 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			436 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package netlink
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	// ErrAttrHeaderTruncated is returned when a netlink attribute's header is
 | 
						|
	// truncated.
 | 
						|
	ErrAttrHeaderTruncated = errors.New("attribute header truncated")
 | 
						|
	// ErrAttrBodyTruncated is returned when a netlink attribute's body is
 | 
						|
	// truncated.
 | 
						|
	ErrAttrBodyTruncated = errors.New("attribute body truncated")
 | 
						|
)
 | 
						|
 | 
						|
type Fou struct {
 | 
						|
	Family    int
 | 
						|
	Port      int
 | 
						|
	Protocol  int
 | 
						|
	EncapType int
 | 
						|
}
 |