• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/include/
1#ifndef _LOG_H_
2#define _LOG_H_
3
4#include <stdio.h>
5
6struct nf_conntrack;
7struct nf_expect;
8
9int init_log(void);
10void dlog(int priority, const char *format, ...);
11void dlog_ct(FILE *fd, struct nf_conntrack *ct, unsigned int type);
12void dlog_exp(FILE *fd, struct nf_expect *exp, unsigned int type);
13void close_log(void);
14
15#endif
16