summaryrefslogtreecommitdiff
path: root/include/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/debug.h')
-rw-r--r--include/debug.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/debug.h b/include/debug.h
new file mode 100644
index 0000000..f205983
--- /dev/null
+++ b/include/debug.h
@@ -0,0 +1,21 @@
+#ifndef _DEBUG_H
+#define _DEBUG_H
+
+#include <libnetfilter_conntrack/libnetfilter_conntrack.h>
+
+#undef DEBUG_CT
+
+#ifdef DEBUG_CT
+#define debug_ct(ct, msg) \
+({ \
+ char buf[1024]; \
+ nfct_snprintf(buf, 1024, ct, NFCT_T_ALL, 0, 0); \
+ printf("[%s]: %s\n", msg, buf); \
+})
+#define debug printf
+#else
+#define debug_ct(ct, msg) do {} while (0)
+#define debug(...) do {} while (0)
+#endif
+
+#endif