 d67b8c616b
			
		
	
	
	d67b8c616b
	
	
	
		
			
			This patch advertise the MC_FORWARDING status for IPv4 and IPv6. This field is readonly, only multicast engine in the kernel updates it. Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com> Signed-off-by: David S. Miller <davem@davemloft.net>
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			438 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			438 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _UAPI_LINUX_NETCONF_H_
 | |
| #define _UAPI_LINUX_NETCONF_H_
 | |
| 
 | |
| #include <linux/types.h>
 | |
| #include <linux/netlink.h>
 | |
| 
 | |
| struct netconfmsg {
 | |
| 	__u8	ncm_family;
 | |
| };
 | |
| 
 | |
| enum {
 | |
| 	NETCONFA_UNSPEC,
 | |
| 	NETCONFA_IFINDEX,
 | |
| 	NETCONFA_FORWARDING,
 | |
| 	NETCONFA_RP_FILTER,
 | |
| 	NETCONFA_MC_FORWARDING,
 | |
| 	__NETCONFA_MAX
 | |
| };
 | |
| #define NETCONFA_MAX	(__NETCONFA_MAX - 1)
 | |
| 
 | |
| #define NETCONFA_IFINDEX_ALL		-1
 | |
| #define NETCONFA_IFINDEX_DEFAULT	-2
 | |
| 
 | |
| #endif /* _UAPI_LINUX_NETCONF_H_ */
 |