summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2010-07-06 05:57:20 +0200
committerPatrick McHardy <kaber@trash.net>2010-07-06 05:57:20 +0200
commit653e35bca873414964c9cde0bd98bca3e0bf6692 (patch)
treeff6e17befb8f45d817a67329742339301c1ce65a /include
parent3a3cd6215d49cb02841b2b20cf8fa9b91de3a831 (diff)
debug: properly parse debug levels
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include')
-rw-r--r--include/nftables.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/nftables.h b/include/nftables.h
index fd958dce..66bfab30 100644
--- a/include/nftables.h
+++ b/include/nftables.h
@@ -12,7 +12,10 @@ enum numeric_level {
};
enum debug_level {
- DEBUG_NETLINK = 0x1,
+ DEBUG_SCANNER = 0x1,
+ DEBUG_PARSER = 0x2,
+ DEBUG_EVALUATION = 0x4,
+ DEBUG_NETLINK = 0x8,
};
#define INCLUDE_PATHS_MAX 16