From: Thomas Jarosch Date: Wed, 7 Apr 2004 22:42:31 +0000 (+0000) Subject: iptables: (tomj) userspace support for ACCOUNT target, disabled distcc (Makefile... X-Git-Tag: v1.9~51 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=35a8230b175ed13efed096c5b646cffba816ee98;p=ipt_ACCOUNT iptables: (tomj) userspace support for ACCOUNT target, disabled distcc (Makefile broken) --- 35a8230b175ed13efed096c5b646cffba816ee98 diff --git a/linux/include/linux/netfilter_ipv4/ipt_ACCOUNT.h b/linux/include/linux/netfilter_ipv4/ipt_ACCOUNT.h new file mode 100644 index 0000000..a9160ca --- /dev/null +++ b/linux/include/linux/netfilter_ipv4/ipt_ACCOUNT.h @@ -0,0 +1,13 @@ +#ifndef _IPT_ACCOUNT_H +#define _IPT_ACCOUNT_H + +#define ACCOUNT_TABLE_NAME_LEN 32 + +struct ipt_account_info { + u_int32_t net_ip; + u_int32_t net_mask; + char table_name[ACCOUNT_TABLE_NAME_LEN]; + int32_t table_nr; +}; + +#endif /*_IPT_ACCOUNT_H*/