From nobody Sun Feb 8 03:33:08 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1531747497803237.77553478330265; Mon, 16 Jul 2018 06:24:57 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.25]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 4D0A0C0587D2; Mon, 16 Jul 2018 13:24:56 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 09B772010CA0; Mon, 16 Jul 2018 13:24:56 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id AB1084A46C; Mon, 16 Jul 2018 13:24:55 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id w6GDOYt1028020 for ; Mon, 16 Jul 2018 09:24:35 -0400 Received: by smtp.corp.redhat.com (Postfix) id BCB762026D76; Mon, 16 Jul 2018 13:24:34 +0000 (UTC) Received: from t460.redhat.com (unknown [10.33.36.75]) by smtp.corp.redhat.com (Postfix) with ESMTP id 29AFF2027047; Mon, 16 Jul 2018 13:24:34 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Mon, 16 Jul 2018 14:23:54 +0100 Message-Id: <20180716132423.10354-9-berrange@redhat.com> In-Reply-To: <20180716132423.10354-1-berrange@redhat.com> References: <20180716132423.10354-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.78 on 10.11.54.4 X-loop: libvir-list@redhat.com Subject: [libvirt] [go PATCH 08/37] nwfilter binding: move wrapper functions out of compat header X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.25 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Mon, 16 Jul 2018 13:24:57 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Signed-off-by: Daniel P. Berrang=C3=A9 --- nwfilter_binding.go | 1 + nwfilter_binding_compat.h | 11 ------ ...g_compat.go =3D> nwfilter_binding_wrapper.go | 1 + nwfilter_binding_wrapper.h | 38 +++++++++++++++++++ 4 files changed, 40 insertions(+), 11 deletions(-) rename nwfilter_binding_compat.go =3D> nwfilter_binding_wrapper.go (98%) create mode 100644 nwfilter_binding_wrapper.h diff --git a/nwfilter_binding.go b/nwfilter_binding.go index 256ac19..daab598 100644 --- a/nwfilter_binding.go +++ b/nwfilter_binding.go @@ -31,6 +31,7 @@ package libvirt #include #include #include "nwfilter_binding_compat.h" +#include "nwfilter_binding_wrapper.h" */ import "C" =20 diff --git a/nwfilter_binding_compat.h b/nwfilter_binding_compat.h index 4aa138d..1d6fd16 100644 --- a/nwfilter_binding_compat.h +++ b/nwfilter_binding_compat.h @@ -30,15 +30,4 @@ typedef struct _virNWFilterBinding *virNWFilterBindingPtr; #endif =20 -const char *virNWFilterBindingGetPortDevWrapper(virNWFilterBindingPtr bind= ing); -const char *virNWFilterBindingGetFilterNameWrapper(virNWFilterBindingPtr b= inding); - -char *virNWFilterBindingGetXMLDescWrapper(virNWFilterBindingPtr binding, - unsigned int flags); - -int virNWFilterBindingDeleteWrapper(virNWFilterBindingPtr binding); -int virNWFilterBindingRefWrapper(virNWFilterBindingPtr binding); -int virNWFilterBindingFreeWrapper(virNWFilterBindingPtr binding); - - #endif /* LIBVIRT_GO_NWFILTER_BINDING_COMPAT_H__ */ diff --git a/nwfilter_binding_compat.go b/nwfilter_binding_wrapper.go similarity index 98% rename from nwfilter_binding_compat.go rename to nwfilter_binding_wrapper.go index 37fcce0..4d0e086 100644 --- a/nwfilter_binding_compat.go +++ b/nwfilter_binding_wrapper.go @@ -30,6 +30,7 @@ package libvirt #include #include #include "nwfilter_binding_compat.h" +#include "nwfilter_binding_wrapper.h" =20 const char *virNWFilterBindingGetPortDevWrapper(virNWFilterBindingPtr bind= ing) { diff --git a/nwfilter_binding_wrapper.h b/nwfilter_binding_wrapper.h new file mode 100644 index 0000000..be09dca --- /dev/null +++ b/nwfilter_binding_wrapper.h @@ -0,0 +1,38 @@ +/* + * This file is part of the libvirt-go project + * + * Permission is hereby granted, free of charge, to any person obtaining a= copy + * of this software and associated documentation files (the "Software"), t= o deal + * in the Software without restriction, including without limitation the r= ights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or se= ll + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included= in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS= OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL= THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING= FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS = IN + * THE SOFTWARE. + * + * Copyright (C) 2018 Red Hat, Inc. + * + */ + +#ifndef LIBVIRT_GO_NWFILTER_BINDING_WRAPPER_H__ +#define LIBVIRT_GO_NWFILTER_BINDING_WRAPPER_H__ + +const char *virNWFilterBindingGetPortDevWrapper(virNWFilterBindingPtr bind= ing); +const char *virNWFilterBindingGetFilterNameWrapper(virNWFilterBindingPtr b= inding); +char *virNWFilterBindingGetXMLDescWrapper(virNWFilterBindingPtr binding, + unsigned int flags); +int virNWFilterBindingDeleteWrapper(virNWFilterBindingPtr binding); +int virNWFilterBindingRefWrapper(virNWFilterBindingPtr binding); +int virNWFilterBindingFreeWrapper(virNWFilterBindingPtr binding); + + +#endif /* LIBVIRT_GO_NWFILTER_BINDING_WRAPPER_H__ */ --=20 2.17.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list