File: debug.h

package info (click to toggle)
conntrack 1%3A1.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 2,948 kB
  • sloc: ansic: 17,370; sh: 11,494; yacc: 1,554; lex: 186; makefile: 94
file content (21 lines) | stat: -rw-r--r-- 408 bytes parent folder | download | duplicates (12)
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) do {} while (0)
#define debug(...) do {} while (0)
#endif

#endif