summaryrefslogtreecommitdiffstats
path: root/include/log.h
blob: b5bbddbb9f56870f74b716e1d15eafc39cba5034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _LOG_H_
#define _LOG_H_

#include <stdio.h>

struct buffer;
struct nf_conntrack;

int init_log();
void dlog(FILE *fd, int priority, char *format, ...);
void dlog_buffered_ct(FILE *fd, struct buffer *b, struct nf_conntrack *ct);
void dlog_buffered_ct_flush(void *buffer_data, void *data);
void close_log();

#endif