Signed-off-by: Anya Harter <aharter(a)redhat.com>
---
data/org.libvirt.Interface.xml | 5 +++++
src/interface.c | 22 ++++++++++++++++++++++
2 files changed, 27 insertions(+)
diff --git a/data/org.libvirt.Interface.xml b/data/org.libvirt.Interface.xml
index ad7c326..e6d9f2a 100644
--- a/data/org.libvirt.Interface.xml
+++ b/data/org.libvirt.Interface.xml
@@ -8,5 +8,10 @@
value="See
https://libvirt.org/html/libvirt-libvirt-interface.html#virInterfaceGetNa...
<annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal"
value="const"/>
</property>
+ <property name="MACString" type="s"
access="read">
+ <annotation name="org.gtk.GDBus.DocString"
+ value="See
https://libvirt.org/html/libvirt-libvirt-interface.html#virInterfaceGetMA...
+ <annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal"
value="const"/>
+ </property>
</interface>
</node>
diff --git a/src/interface.c b/src/interface.c
index 733ce44..2b62304 100644
--- a/src/interface.c
+++ b/src/interface.c
@@ -45,7 +45,29 @@ virtDBusInterfaceGetName(const gchar *objectPath,
*value = g_variant_new("s", name);
}
+static void
+virtDBusInterfaceGetMACString(const gchar *objectPath,
+ gpointer userData,
+ GVariant **value,
+ GError **error)
+{
+ virtDBusConnect *connect = userData;
+ g_autoptr(virInterface) interface = NULL;
+ const gchar *mac;
+
+ interface = virtDBusInterfaceGetVirInterface(connect, objectPath, error);
+ if (!interface)
+ return;
+
+ mac = virInterfaceGetMACString(interface);
+ if (!mac)
+ return virtDBusUtilSetLastVirtError(error);
+
+ *value = g_variant_new("s", mac);
+}
+
static virtDBusGDBusPropertyTable virtDBusInterfacePropertyTable[] = {
+ { "MACString", virtDBusInterfaceGetMACString, NULL },
{ "Name", virtDBusInterfaceGetName, NULL },
{ 0 }
};
--
2.17.1