blob: 467ae8f337e93e511b7f1d5e2512486af6981eb9 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _LOG_H_
#define _LOG_H_
int init_log();
void dlog(FILE *fd, int priority, char *format, ...);
void dlog_ct(FILE *fd, struct nf_conntrack *ct);
void close_log();
#endif
|