summaryrefslogtreecommitdiffstats
path: root/include/conntrack.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/conntrack.h')
-rw-r--r--include/conntrack.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/include/conntrack.h b/include/conntrack.h
index 9e005d9..2e17475 100644
--- a/include/conntrack.h
+++ b/include/conntrack.h
@@ -138,14 +138,10 @@ enum options {
#define NUMBER_OF_OPT CT_OPT_MAX+1
enum {
- _O_XML_BIT = 0,
- _O_XML = (1 << _O_XML_BIT),
-
- _O_EXT_BIT = 1,
- _O_EXT = (1 << _O_EXT_BIT),
-
- _O_TMS_BIT = 2,
- _O_TMS = (1 << _O_TMS_BIT),
+ _O_XML = (1 << 0),
+ _O_EXT = (1 << 1),
+ _O_TMS = (1 << 2),
+ _O_ID = (1 << 3),
};
struct ctproto_handler {