summaryrefslogtreecommitdiffstats
path: root/include/log.h
blob: b258633854e969656c16317d45fee338e804758c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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(struct nf_conntrack *ct);
void close_log(void);

#endif