From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Ivanov Subject: Netfilter IPT_RETURN & IPT_CONTINUE Date: Thu, 27 Oct 2005 08:22:23 +0300 Message-ID: <4360640F.8080205@supportivo.org> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: netfilter-bounces@lists.netfilter.org Errors-To: netfilter-bounces@lists.netfilter.org Content-Type: text/plain; charset="us-ascii"; format="flowed" To: netfilter@lists.netfilter.org In a simple hook , when i return IPT_RETURN after the userspace processing it does not have the effect or a RETURN jump for example. It says to the kernel : DROP THIS PACKET. If i pass continue : i continue traversing the chain. The simple effect that i want to achieve is to just accept the packet and stop traversing the current chain. Is that possible? I'm rather new to nf hooking and that's why i ask.