From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick McHardy Subject: Re: [PATCH v2 5/9] tproxy: allow non-local binds of IPv6 sockets if IP_TRANSPARENT is enabled Date: Thu, 21 Oct 2010 16:11:26 +0200 Message-ID: <4CC04A0E.4030203@trash.net> References: <20101021104709.5192.31249.stgit@este.odu> <20101021104709.5192.12412.stgit@este.odu> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org, netfilter-devel@vger.kernel.org, Balazs Scheidler , David Miller To: KOVACS Krisztian Return-path: Received: from stinky.trash.net ([213.144.137.162]:58686 "EHLO stinky.trash.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758433Ab0JUOL2 (ORCPT ); Thu, 21 Oct 2010 10:11:28 -0400 In-Reply-To: <20101021104709.5192.12412.stgit@este.odu> Sender: netfilter-devel-owner@vger.kernel.org List-ID: Am 21.10.2010 12:47, schrieb KOVACS Krisztian: > @@ -343,7 +343,7 @@ int inet6_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len) > */ > v4addr = LOOPBACK4_IPV6; > if (!(addr_type & IPV6_ADDR_MULTICAST)) { > - if (!ipv6_chk_addr(net, &addr->sin6_addr, > + if (!inet->transparent && !ipv6_chk_addr(net, &addr->sin6_addr, > dev, 0)) { This looked like it was supposed to have a line break at the &&, so I've added that and applied it.