From mboxrd@z Thu Jan 1 00:00:00 1970 From: diegows Subject: checkentry() and detroy () called multiple times Date: Mon, 12 May 2003 11:22:00 -0300 Sender: netfilter-devel-admin@lists.netfilter.org Message-ID: <3EBFAE08.5050006@linux.org.ar> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: To: netfilter-devel@lists.netfilter.org Errors-To: netfilter-devel-admin@lists.netfilter.org List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: List-Id: netfilter-devel.vger.kernel.org I 'm doing a match module and I have i little confusion. If I insert a rule using my match module, I see that checkentry() is called once. If I insert a rule using my match module again I see that checkentry() is called twice and destroy is called once, and If i insert a rule for third time I see that checkentry is called tree times and destroy twice. Is this the right? why?