Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / include / linux / netfilter / nfnetlink_acct.h
1 #ifndef _NFNL_ACCT_H_
2 #define _NFNL_ACCT_H_
3
4 #include <uapi/linux/netfilter/nfnetlink_acct.h>
5
6 enum {
7         NFACCT_NO_QUOTA         = -1,
8         NFACCT_UNDERQUOTA,
9         NFACCT_OVERQUOTA,
10 };
11
12 struct nf_acct;
13
14 struct nf_acct *nfnl_acct_find_get(const char *filter_name);
15 void nfnl_acct_put(struct nf_acct *acct);
16 void nfnl_acct_update(const struct sk_buff *skb, struct nf_acct *nfacct);
17 extern int nfnl_acct_overquota(const struct sk_buff *skb,
18                               struct nf_acct *nfacct);
19 #endif /* _NFNL_ACCT_H */