summaryrefslogtreecommitdiffstats
path: root/include/debug.h
blob: 1ffd9aca98507aaeec17bfda63e2c93c69d4baae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)
#define debug
#endif

#endif