 b69bbe25ac
			
		
	
	b69bbe25ac
	
	
	
		
			
			* Bump k8s.io/cri-api to latest version - v0.23.0-alpha.4 * Vendor github.com/vishvananda/netlink for network stats Signed-off-by: David Porter <porterdavid@google.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
 | |
| }
 |