Release 4.17 include/linux/netfilter/nfnetlink_acct.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _NFNL_ACCT_H_
#define _NFNL_ACCT_H_
#include <uapi/linux/netfilter/nfnetlink_acct.h>
#include <net/net_namespace.h>
enum {
NFACCT_NO_QUOTA = -1,
NFACCT_UNDERQUOTA,
NFACCT_OVERQUOTA,
};
struct nf_acct;
struct nf_acct *nfnl_acct_find_get(struct net *net, const char *filter_name);
void nfnl_acct_put(struct nf_acct *acct);
void nfnl_acct_update(const struct sk_buff *skb, struct nf_acct *nfacct);
int nfnl_acct_overquota(struct net *net, struct nf_acct *nfacct);
#endif /* _NFNL_ACCT_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Pablo Neira Ayuso | 47 | 55.29% | 1 | 16.67% |
Mathieu J. Poirier | 21 | 24.71% | 1 | 16.67% |
Andreas Schultz | 8 | 9.41% | 1 | 16.67% |
Liping Zhang | 5 | 5.88% | 1 | 16.67% |
David Howells | 3 | 3.53% | 1 | 16.67% |
Greg Kroah-Hartman | 1 | 1.18% | 1 | 16.67% |
Taehee Yoo | | 0.00% | 0 | 0.00% |
Total | 85 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.