summaryrefslogtreecommitdiffstats
path: root/include/log.h
blob: f5c5b4fdab223a0985a7068a6afd1f14fb8be4f7 (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(FILE *fd, struct nf_conntrack *ct, unsigned int type);
void close_log(void);

#endif