Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc
[linux-2.6/lfs.git] / include / net / netfilter / xt_rateest.h
blob65d594dffbff431e35a0ac7ec29a051bb022c8b6
1 #ifndef _XT_RATEEST_H
2 #define _XT_RATEEST_H
4 struct xt_rateest {
5 struct hlist_node list;
6 char name[IFNAMSIZ];
7 unsigned int refcnt;
8 spinlock_t lock;
9 struct gnet_estimator params;
10 struct gnet_stats_rate_est rstats;
11 struct gnet_stats_basic bstats;
14 extern struct xt_rateest *xt_rateest_lookup(const char *name);
15 extern void xt_rateest_put(struct xt_rateest *est);
17 #endif /* _XT_RATEEST_H */