Commit 25ed8910 authored by Patrick McHardy's avatar Patrick McHardy Committed by David S. Miller

[NETFILTER]: Nicer names for ipt_connbytes constants

Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8ffde671
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
#define _IPT_CONNBYTES_H #define _IPT_CONNBYTES_H
enum ipt_connbytes_what { enum ipt_connbytes_what {
IPT_CONNBYTES_WHAT_PKTS, IPT_CONNBYTES_PKTS,
IPT_CONNBYTES_WHAT_BYTES, IPT_CONNBYTES_BYTES,
IPT_CONNBYTES_WHAT_AVGPKT, IPT_CONNBYTES_AVGPKT,
}; };
enum ipt_connbytes_direction { enum ipt_connbytes_direction {
......
...@@ -54,7 +54,7 @@ match(const struct sk_buff *skb, ...@@ -54,7 +54,7 @@ match(const struct sk_buff *skb,
return 0; /* no match */ return 0; /* no match */
switch (sinfo->what) { switch (sinfo->what) {
case IPT_CONNBYTES_WHAT_PKTS: case IPT_CONNBYTES_PKTS:
switch (sinfo->direction) { switch (sinfo->direction) {
case IPT_CONNBYTES_DIR_ORIGINAL: case IPT_CONNBYTES_DIR_ORIGINAL:
what = ct->counters[IP_CT_DIR_ORIGINAL].packets; what = ct->counters[IP_CT_DIR_ORIGINAL].packets;
...@@ -68,7 +68,7 @@ match(const struct sk_buff *skb, ...@@ -68,7 +68,7 @@ match(const struct sk_buff *skb,
break; break;
} }
break; break;
case IPT_CONNBYTES_WHAT_BYTES: case IPT_CONNBYTES_BYTES:
switch (sinfo->direction) { switch (sinfo->direction) {
case IPT_CONNBYTES_DIR_ORIGINAL: case IPT_CONNBYTES_DIR_ORIGINAL:
what = ct->counters[IP_CT_DIR_ORIGINAL].bytes; what = ct->counters[IP_CT_DIR_ORIGINAL].bytes;
...@@ -82,7 +82,7 @@ match(const struct sk_buff *skb, ...@@ -82,7 +82,7 @@ match(const struct sk_buff *skb,
break; break;
} }
break; break;
case IPT_CONNBYTES_WHAT_AVGPKT: case IPT_CONNBYTES_AVGPKT:
switch (sinfo->direction) { switch (sinfo->direction) {
case IPT_CONNBYTES_DIR_ORIGINAL: case IPT_CONNBYTES_DIR_ORIGINAL:
what = div64_64(ct->counters[IP_CT_DIR_ORIGINAL].bytes, what = div64_64(ct->counters[IP_CT_DIR_ORIGINAL].bytes,
...@@ -128,9 +128,9 @@ static int check(const char *tablename, ...@@ -128,9 +128,9 @@ static int check(const char *tablename,
if (matchsize != IPT_ALIGN(sizeof(struct ipt_connbytes_info))) if (matchsize != IPT_ALIGN(sizeof(struct ipt_connbytes_info)))
return 0; return 0;
if (sinfo->what != IPT_CONNBYTES_WHAT_PKTS && if (sinfo->what != IPT_CONNBYTES_PKTS &&
sinfo->what != IPT_CONNBYTES_WHAT_BYTES && sinfo->what != IPT_CONNBYTES_BYTES &&
sinfo->what != IPT_CONNBYTES_WHAT_AVGPKT) sinfo->what != IPT_CONNBYTES_AVGPKT)
return 0; return 0;
if (sinfo->direction != IPT_CONNBYTES_DIR_ORIGINAL && if (sinfo->direction != IPT_CONNBYTES_DIR_ORIGINAL &&
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment