summaryrefslogtreecommitdiff
path: root/include/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/log.h')
-rw-r--r--include/log.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/log.h b/include/log.h
new file mode 100644
index 0000000..f5c5b4f
--- /dev/null
+++ b/include/log.h
@@ -0,0 +1,13 @@
+#ifndef _LOG_H_
+#define _LOG_H_
+
+#include <stdio.h>
+
+struct nf_conntrack;
+
+int init_log(void);
+void dlog(int priority, const char *format, ...);
+void dlog_ct(FILE *fd, struct nf_conntrack *ct, unsigned int type);
+void close_log(void);
+
+#endif