mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-04 08:28:50 +00:00 
			
		
		
		
	flush netlink related dependencies with gre information. Add some linux headers required to compile with it. Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			293 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			293 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef __LINUX_IF_PACKET_H
 | 
						|
#define __LINUX_IF_PACKET_H
 | 
						|
 | 
						|
#include <linux/types.h>
 | 
						|
 | 
						|
struct sockaddr_ll {
 | 
						|
	unsigned short sll_family;
 | 
						|
	__be16 sll_protocol;
 | 
						|
	int sll_ifindex;
 | 
						|
	unsigned short sll_hatype;
 | 
						|
	unsigned char sll_pkttype;
 | 
						|
	unsigned char sll_halen;
 | 
						|
	unsigned char sll_addr[8];
 | 
						|
};
 | 
						|
 | 
						|
#endif
 |