@@ -15,9 +15,9 @@
#include <linux/types.h>
-#define XT_DSCP_MASK 0xfc /* 11111100 */
-#define XT_DSCP_SHIFT 2
-#define XT_DSCP_MAX 0x3f /* 00111111 */
+#define XT_DSCP_MASK (0xfc) /* 11111100 */
+#define XT_DSCP_SHIFT (2)
+#define XT_DSCP_MAX (0x3f) /* 00111111 */
/* match info */
struct xt_dscp_info {
@@ -22,8 +22,8 @@ enum xt_rateest_match_mode {
};
struct xt_rateest_match_info {
- char name1[IFNAMSIZ];
- char name2[IFNAMSIZ];
+ char name1[IFNAMSIZ];
+ char name2[IFNAMSIZ];
__u16 flags;
__u16 mode;
__u32 bps1;
@@ -4,11 +4,11 @@
#include <linux/types.h>
-#define XT_TCPMSS_CLAMP_PMTU 0xffff
+#define XT_TCPMSS_CLAMP_PMTU (0xffff)
struct xt_tcpmss_match_info {
- __u16 mss_min, mss_max;
- __u8 invert;
+ __u16 mss_min, mss_max;
+ __u8 invert;
};
struct xt_tcpmss_info {
@@ -16,10 +16,10 @@
#define ipt_ecn_info xt_ecn_info
-#define IPT_ECN_OP_SET_IP 0x01 /* set ECN bits of IPv4 header */
-#define IPT_ECN_OP_SET_ECE 0x10 /* set ECE bit of TCP header */
-#define IPT_ECN_OP_SET_CWR 0x20 /* set CWR bit of TCP header */
-#define IPT_ECN_OP_MASK 0xce
+#define IPT_ECN_OP_SET_IP (0x01) /* set ECN bits of IPv4 header */
+#define IPT_ECN_OP_SET_ECE (0x10) /* set ECE bit of TCP header */
+#define IPT_ECN_OP_SET_CWR (0x20) /* set CWR bit of TCP header */
+#define IPT_ECN_OP_MASK (0xce)
enum {
IPT_ECN_IP_MASK = XT_ECN_IP_MASK,
@@ -11,13 +11,12 @@
#include <linux/types.h>
enum {
- IPT_TTL_EQ = 0, /* equals */
+ IPT_TTL_EQ = 0, /* equals */
IPT_TTL_NE, /* not equals */
IPT_TTL_LT, /* less than */
IPT_TTL_GT, /* greater than */
};
-
struct ipt_ttl_info {
__u8 mode;
__u8 ttl;
@@ -11,13 +11,12 @@
#include <linux/types.h>
enum {
- IP6T_HL_EQ = 0, /* equals */
+ IP6T_HL_EQ = 0, /* equals */
IP6T_HL_NE, /* not equals */
IP6T_HL_LT, /* less than */
IP6T_HL_GT, /* greater than */
};
-
struct ip6t_hl_info {
__u8 mode;
__u8 hop_limit;
@@ -30,13 +30,13 @@ MODULE_ALIAS("ipt_TOS");
MODULE_ALIAS("ip6t_TOS");
MODULE_ALIAS("xt_DSCP");
-#define XT_DSCP_ECN_MASK 3u
+#define XT_DSCP_ECN_MASK (3u)
static bool
dscp_mt(const struct sk_buff *skb, struct xt_action_param *par)
{
const struct xt_dscp_info *info = par->matchinfo;
- u_int8_t dscp = ipv4_get_dsfield(ip_hdr(skb)) >> XT_DSCP_SHIFT;
+ u8 dscp = ipv4_get_dsfield(ip_hdr(skb)) >> XT_DSCP_SHIFT;
return (dscp == info->dscp) ^ !!info->invert;
}
@@ -45,7 +45,7 @@ static bool
dscp_mt6(const struct sk_buff *skb, struct xt_action_param *par)
{
const struct xt_dscp_info *info = par->matchinfo;
- u_int8_t dscp = ipv6_get_dsfield(ipv6_hdr(skb)) >> XT_DSCP_SHIFT;
+ u8 dscp = ipv6_get_dsfield(ipv6_hdr(skb)) >> XT_DSCP_SHIFT;
return (dscp == info->dscp) ^ !!info->invert;
}
@@ -17,7 +17,7 @@
#include <linux/netfilter/xt_rateest.h>
#include <net/netfilter/xt_rateest.h>
-#define RATEEST_HSIZE 16
+#define RATEEST_HSIZE (16)
MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
MODULE_LICENSE("GPL");
@@ -33,7 +33,7 @@ xt_rateest_mt(const struct sk_buff *skb, struct xt_action_param *par)
{
const struct xt_rateest_match_info *info = par->matchinfo;
struct gnet_stats_rate_est64 sample = {0};
- u_int32_t bps1, bps2, pps1, pps2;
+ u32 bps1, bps2, pps1, pps2;
bool ret = true;
gen_estimator_read(&info->est1->rate_est, &sample);
@@ -41,7 +41,7 @@ tcpmss_mt(const struct sk_buff *skb, struct xt_action_param *par)
const struct tcphdr *th;
struct tcphdr _tcph;
/* tcp.doff is only 4 bits, ie. max 15 * 4 bytes */
- const u_int8_t *op;
+ const u8 *op;
u8 _opt[15 * 4 - sizeof(_tcph)];
unsigned int i, optlen;
@@ -116,9 +116,7 @@ optlen(const u8 *opt, unsigned int offset)
return opt[offset + 1];
}
-static u_int32_t tcpmss_reverse_mtu(struct net *net,
- const struct sk_buff *skb,
- unsigned int family)
+static u32 tcpmss_reverse_mtu(struct net *net, const struct sk_buff *skb, unsigned int family)
{
struct flowi fl;
struct rtable *rt = NULL;
@@ -191,7 +189,7 @@ tcpmss_mangle_packet(struct sk_buff *skb,
newmss = info->mss;
}
- opt = (u_int8_t *)tcph;
+ opt = (u8 *)tcph;
for (i = sizeof(struct tcphdr); i <= tcp_hdrlen - TCPOLEN_MSS; i += optlen(opt, i)) {
if (opt[i] == TCPOPT_MSS && opt[i + 1] == TCPOLEN_MSS) {
u16 oldmss;
@@ -251,7 +249,7 @@ tcpmss_mangle_packet(struct sk_buff *skb,
else
newmss = min(newmss, (u16)1220);
- opt = (u_int8_t *)tcph + sizeof(struct tcphdr);
+ opt = (u8 *)tcph + sizeof(struct tcphdr);
memmove(opt + TCPOLEN_MSS, opt, len - sizeof(struct tcphdr));
inet_proto_csum_replace2(&tcph->check, skb,