diff options
| author | Jarno Rajahalme <jarno@ovn.org> | 2016-03-10 13:54:16 -0500 |
|---|---|---|
| committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2016-03-14 18:47:27 -0400 |
| commit | bfa3f9d7f3b349acea8982d2248e33a0ed84c687 (patch) | |
| tree | 52941ad2740a415a5f5833f8a18887e2ac2a2ac7 /include/uapi/linux | |
| parent | d157bd761585605b7882935ffb86286919f62ea1 (diff) | |
netfilter: Remove IP_CT_NEW_REPLY definition.
Remove the definition of IP_CT_NEW_REPLY from the kernel as it does
not make sense. This allows the definition of IP_CT_NUMBER to be
simplified as well.
Signed-off-by: Jarno Rajahalme <jarno@ovn.org>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/netfilter/nf_conntrack_common.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/uapi/linux/netfilter/nf_conntrack_common.h b/include/uapi/linux/netfilter/nf_conntrack_common.h index 319f47128db8..6d074d14ee27 100644 --- a/include/uapi/linux/netfilter/nf_conntrack_common.h +++ b/include/uapi/linux/netfilter/nf_conntrack_common.h | |||
| @@ -20,9 +20,15 @@ enum ip_conntrack_info { | |||
| 20 | 20 | ||
| 21 | IP_CT_ESTABLISHED_REPLY = IP_CT_ESTABLISHED + IP_CT_IS_REPLY, | 21 | IP_CT_ESTABLISHED_REPLY = IP_CT_ESTABLISHED + IP_CT_IS_REPLY, |
| 22 | IP_CT_RELATED_REPLY = IP_CT_RELATED + IP_CT_IS_REPLY, | 22 | IP_CT_RELATED_REPLY = IP_CT_RELATED + IP_CT_IS_REPLY, |
| 23 | IP_CT_NEW_REPLY = IP_CT_NEW + IP_CT_IS_REPLY, | 23 | /* No NEW in reply direction. */ |
| 24 | /* Number of distinct IP_CT types (no NEW in reply dirn). */ | 24 | |
| 25 | IP_CT_NUMBER = IP_CT_IS_REPLY * 2 - 1 | 25 | /* Number of distinct IP_CT types. */ |
| 26 | IP_CT_NUMBER, | ||
| 27 | |||
| 28 | /* only for userspace compatibility */ | ||
| 29 | #ifndef __KERNEL__ | ||
| 30 | IP_CT_NEW_REPLY = IP_CT_NUMBER, | ||
| 31 | #endif | ||
| 26 | }; | 32 | }; |
| 27 | 33 | ||
| 28 | #define NF_CT_STATE_INVALID_BIT (1 << 0) | 34 | #define NF_CT_STATE_INVALID_BIT (1 << 0) |
