From patchwork Thu Jan 10 14:29:34 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomasz Bursztyka X-Patchwork-Id: 211013 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 26C352C03DA for ; Fri, 11 Jan 2013 01:29:46 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752362Ab3AJO3p (ORCPT ); Thu, 10 Jan 2013 09:29:45 -0500 Received: from mga14.intel.com ([143.182.124.37]:29742 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751586Ab3AJO3o (ORCPT ); Thu, 10 Jan 2013 09:29:44 -0500 Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga102.ch.intel.com with ESMTP; 10 Jan 2013 06:29:44 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.84,444,1355126400"; d="scan'208";a="242304071" Received: from rd-180.fi.intel.com ([10.237.68.142]) by azsmga001.ch.intel.com with ESMTP; 10 Jan 2013 06:29:43 -0800 From: Tomasz Bursztyka To: netfilter-devel@vger.kernel.org Cc: Tomasz Bursztyka Subject: [iptables-nftables RFC PATCH 1/6] nft: Add a family attribute to nft_handle Date: Thu, 10 Jan 2013 16:29:34 +0200 Message-Id: <1357828179-18664-2-git-send-email-tomasz.bursztyka@linux.intel.com> X-Mailer: git-send-email 1.8.0.2 In-Reply-To: <1357828179-18664-1-git-send-email-tomasz.bursztyka@linux.intel.com> References: <1357828179-18664-1-git-send-email-tomasz.bursztyka@linux.intel.com> Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org Signed-off-by: Tomasz Bursztyka --- iptables/nft.h | 1 + 1 file changed, 1 insertion(+) diff --git a/iptables/nft.h b/iptables/nft.h index aed2498..1bd9ccc 100644 --- a/iptables/nft.h +++ b/iptables/nft.h @@ -4,6 +4,7 @@ #include "xshared.h" struct nft_handle { + int family; struct mnl_socket *nl; uint32_t portid; uint32_t seq;