diff options
author | 2022-08-22 16:41:21 +0200 | |
---|---|---|
committer | 2022-09-07 16:46:03 +0200 | |
commit | a0a4de4d897f5ce672e086cb6b9f91a306af6953 (patch) | |
tree | 445438e5f40e7ce17ab357fe733f1358fd7fd913 | |
parent | netfilter: conntrack: reduce timeout when receiving out-of-window fin or rst (diff) | |
download | wireguard-linux-a0a4de4d897f5ce672e086cb6b9f91a306af6953.tar.xz wireguard-linux-a0a4de4d897f5ce672e086cb6b9f91a306af6953.zip |
netfilter: remove NFPROTO_DECNET
Decnet has been removed. so no need to reserve space in arrays for it.
Signed-off-by: Florian Westphal <fw@strlen.de>
-rw-r--r-- | include/uapi/linux/netfilter.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/uapi/linux/netfilter.h b/include/uapi/linux/netfilter.h index 53411ccc69db..5a79ccb76701 100644 --- a/include/uapi/linux/netfilter.h +++ b/include/uapi/linux/netfilter.h @@ -63,7 +63,9 @@ enum { NFPROTO_NETDEV = 5, NFPROTO_BRIDGE = 7, NFPROTO_IPV6 = 10, +#ifndef __KERNEL__ /* no longer supported by kernel */ NFPROTO_DECNET = 12, +#endif NFPROTO_NUMPROTO, }; |