|
|
@@ -20,9 +20,15 @@ enum ip_conntrack_info {
|
|
|
|
|
|
IP_CT_ESTABLISHED_REPLY = IP_CT_ESTABLISHED + IP_CT_IS_REPLY,
|
|
|
IP_CT_RELATED_REPLY = IP_CT_RELATED + IP_CT_IS_REPLY,
|
|
|
- IP_CT_NEW_REPLY = IP_CT_NEW + IP_CT_IS_REPLY,
|
|
|
- /* Number of distinct IP_CT types (no NEW in reply dirn). */
|
|
|
- IP_CT_NUMBER = IP_CT_IS_REPLY * 2 - 1
|
|
|
+ /* No NEW in reply direction. */
|
|
|
+
|
|
|
+ /* Number of distinct IP_CT types. */
|
|
|
+ IP_CT_NUMBER,
|
|
|
+
|
|
|
+ /* only for userspace compatibility */
|
|
|
+#ifndef __KERNEL__
|
|
|
+ IP_CT_NEW_REPLY = IP_CT_NUMBER,
|
|
|
+#endif
|
|
|
};
|
|
|
|
|
|
#define NF_CT_STATE_INVALID_BIT (1 << 0)
|