From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick McHardy Subject: Re: [PATCH 1/3] libnl: add netfilter support Date: Mon, 03 Sep 2007 11:50:05 +0200 Message-ID: <46DBD8CD.9060804@trash.net> References: <46DB9716.1020400@snapgear.com> <46DB9776.8020209@snapgear.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: Netfilter Developer Mailing List To: Philip Craig Return-path: In-Reply-To: <46DB9776.8020209@snapgear.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: netfilter-devel-bounces@lists.netfilter.org Errors-To: netfilter-devel-bounces@lists.netfilter.org List-Id: netfilter-devel.vger.kernel.org Philip Craig wrote: > +#define NFA_NEST(skb, type) \ > +({ struct nfattr *__start = (struct nfattr *)skb_tail_pointer(skb); \ > + NFA_PUT(skb, (NFNL_NFA_NEST | type), 0, NULL); \ > + __start; }) The latest libnetfilter_conntrack version doesn't send the NFA_NEST bit to the kernel anymore since we intend to get rid of it, at least on the receive side. Please change this to not send it here as well.