mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
136ba622de
This patch adds macro NETCONFA_ALL to represent all type of netconf attributes for IPv4 and IPv6. Signed-off-by: Zhang Shengju <zhangshengju@cmss.chinamobile.com> Signed-off-by: David S. Miller <davem@davemloft.net>
27 lines
524 B
C
27 lines
524 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_PROXY_NEIGH,
|
|
NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN,
|
|
__NETCONFA_MAX
|
|
};
|
|
#define NETCONFA_MAX (__NETCONFA_MAX - 1)
|
|
#define NETCONFA_ALL -1
|
|
|
|
#define NETCONFA_IFINDEX_ALL -1
|
|
#define NETCONFA_IFINDEX_DEFAULT -2
|
|
|
|
#endif /* _UAPI_LINUX_NETCONF_H_ */
|