summaryrefslogtreecommitdiff
path: root/openwrt/target
diff options
context:
space:
mode:
authorWaldemar Brodkorb <mail@waldemar-brodkorb.de>2005-12-15 23:15:50 +0000
committerWaldemar Brodkorb <mail@waldemar-brodkorb.de>2005-12-15 23:15:50 +0000
commit6070f77c0f66190c25f711e4361348d7741f0e03 (patch)
tree829636c9edd813bf3370104efcca5c694371b37f /openwrt/target
parentb9296811d3e9b0d2ec52138a872aa06611908a2e (diff)
downloadmtk-20170518-6070f77c0f66190c25f711e4361348d7741f0e03.zip
mtk-20170518-6070f77c0f66190c25f711e4361348d7741f0e03.tar.gz
mtk-20170518-6070f77c0f66190c25f711e4361348d7741f0e03.tar.bz2
fix one of the iptables 1.3.4 compile errors on 2.4
SVN-Revision: 2691
Diffstat (limited to 'openwrt/target')
-rw-r--r--openwrt/target/linux/linux-2.4/patches/generic/610-netfilter_connbytes.patch18
1 files changed, 9 insertions, 9 deletions
diff --git a/openwrt/target/linux/linux-2.4/patches/generic/610-netfilter_connbytes.patch b/openwrt/target/linux/linux-2.4/patches/generic/610-netfilter_connbytes.patch
index f6f84d3..d976117 100644
--- a/openwrt/target/linux/linux-2.4/patches/generic/610-netfilter_connbytes.patch
+++ b/openwrt/target/linux/linux-2.4/patches/generic/610-netfilter_connbytes.patch
@@ -271,7 +271,7 @@
+ if (!(ct = ip_conntrack_get((struct sk_buff *)skb, &ctinfo)))
+ return 0; /* no match */
+ switch (sinfo->what) {
-+ case IPT_CONNBYTES_WHAT_PKTS:
++ case IPT_CONNBYTES_PKTS:
+ switch (sinfo->direction) {
+ case IPT_CONNBYTES_DIR_ORIGINAL:
+ what = ct->counters[IP_CT_DIR_ORIGINAL].packets;
@@ -285,7 +285,7 @@
+ break;
+ }
+ break;
-+ case IPT_CONNBYTES_WHAT_BYTES:
++ case IPT_CONNBYTES_BYTES:
+ switch (sinfo->direction) {
+ case IPT_CONNBYTES_DIR_ORIGINAL:
+ what = ct->counters[IP_CT_DIR_ORIGINAL].bytes;
@@ -299,7 +299,7 @@
+ break;
+ }
+ break;
-+ case IPT_CONNBYTES_WHAT_AVGPKT:
++ case IPT_CONNBYTES_AVGPKT:
+ switch (sinfo->direction) {
+ case IPT_CONNBYTES_DIR_ORIGINAL:
+ {
@@ -358,9 +358,9 @@
+
+ if (matchsize != IPT_ALIGN(sizeof(struct ipt_connbytes_info)))
+ return 0;
-+ if (sinfo->what != IPT_CONNBYTES_WHAT_PKTS &&
-+ sinfo->what != IPT_CONNBYTES_WHAT_BYTES &&
-+ sinfo->what != IPT_CONNBYTES_WHAT_AVGPKT)
++ if (sinfo->what != IPT_CONNBYTES_PKTS &&
++ sinfo->what != IPT_CONNBYTES_BYTES &&
++ sinfo->what != IPT_CONNBYTES_AVGPKT)
+ return 0;
+
+ if (sinfo->direction != IPT_CONNBYTES_DIR_ORIGINAL &&
@@ -393,9 +393,9 @@
+#ifndef _IPT_CONNBYTES_H
+#define _IPT_CONNBYTES_H
+enum ipt_connbytes_what {
-+ IPT_CONNBYTES_WHAT_PKTS,
-+ IPT_CONNBYTES_WHAT_BYTES,
-+ IPT_CONNBYTES_WHAT_AVGPKT,
++ IPT_CONNBYTES_PKTS,
++ IPT_CONNBYTES_BYTES,
++ IPT_CONNBYTES_AVGPKT,
+};
+
+enum ipt_connbytes_direction {