fix one of the iptables 1.3.4 compile errors on 2.4
[openwrt.git] / openwrt / target / linux / linux-2.4 / patches / generic / 610-netfilter_connbytes.patch
index f6f84d3..d976117 100644 (file)
 +      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;
 +                        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;
 +                        break;
 +                }
 +                break;
-+        case IPT_CONNBYTES_WHAT_AVGPKT:
++        case IPT_CONNBYTES_AVGPKT:
 +                switch (sinfo->direction) {
 +                case IPT_CONNBYTES_DIR_ORIGINAL:
 +                        {
 +
 +      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 &&
 +#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 {
This page took 0.029722 seconds and 4 git commands to generate.