[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20130118.143200.1013561317240911918.davem@davemloft.net>
Date: Fri, 18 Jan 2013 14:32:00 -0500 (EST)
From: David Miller <davem@...emloft.net>
To: hannes@...essinduktion.org
Cc: yoshfuji@...ux-ipv6.org, netdev@...r.kernel.org
Subject: Re: [PATCH] ipv6: add anti-spoofing checks for 6to4 and 6rd
From: Hannes Frederic Sowa <hannes@...essinduktion.org>
Date: Thu, 17 Jan 2013 21:07:33 +0100
> +#ifdef CONFIG_IPV6_SIT_6RD
> + if (ipv6_prefix_equal(addr6, &tunnel->ip6rd.prefix,
> + tunnel->ip6rd.prefixlen) &&
> + *addr != try_6rd(addr6, tunnel))
> + return 0;
> +#else
> + if (addr6->s6_addr16[0] == htons(0x2002) &&
> + *addr != try_6rd(addr6, tunnel))
> + return 0;
> +#endif
> + return 1;
> +}
...
> + } else if (!sit_chk_encap_addr(tunnel, &iph->saddr,
> + &ipv6_hdr(skb)->saddr) ||
> + !sit_chk_encap_addr(tunnel, &iph->daddr,
> + &ipv6_hdr(skb)->daddr)) {
None of these conditionals are indented properly, please fix this up.
Both conditionals and function calls that span multiple lines must use
the column after the openning parenthesis of the initial line as the
left justification of subsequent lines.
I see what you're doing, just using TAB characters exclusively to
ident, don't do that. You must use the appropriate combination of
TAB and space characters to achieve the correct indentaiton.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists