From c4414d9a8b31bedfb7471cd2365aaf5ea5cf55d5 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 14 Jun 2010 15:51:25 -0700 Subject: debian conntrack 0.9.14-2 --- include/debug.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 include/debug.h (limited to 'include/debug.h') 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 + +#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 -- cgit v1.2.3