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