• 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 _ORIGIN_H_
2#define _ORIGIN_H_
3
4enum {
5	CTD_ORIGIN_NOT_ME = 0,		/* this event comes from the kernel or
6					   any process, but not conntrackd */
7	CTD_ORIGIN_COMMIT,		/* event comes from committer */
8	CTD_ORIGIN_FLUSH,		/* event comes from flush */
9	CTD_ORIGIN_INJECT,		/* event comes from direct inject */
10};
11
12int origin_register(struct nfct_handle *h, int origin_type);
13int origin_find(const struct nlmsghdr *nlh);
14int origin_unregister(struct nfct_handle *h);
15
16#endif
17