mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 13:20:08 +01:00
* introspection/nm-device.xml libnm-glib/nm-device.c libnm-glib/nm-device.h - Add 'Carrier' property to exported NMDevice objects * src/nm-device-interface.h src/nm-device-interface.c src/nm-device.c - Add a 'carrier' property to internal NMDevice objects git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2884 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<node name="/">
|
|
<interface name="org.freedesktop.NetworkManager.Device">
|
|
<method name="Activate">
|
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_device_activate"/>
|
|
<arg name="service_name" type="s" direction="in"/>
|
|
<arg name="connection" type="o" direction="in"/>
|
|
<arg name="specific_object" type="o" direction="in"/>
|
|
</method>
|
|
<method name="Deactivate">
|
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_device_deactivate"/>
|
|
</method>
|
|
|
|
<property name="Udi" type="s" access="read"/>
|
|
<property name="Index" type="u" access="read"/>
|
|
<property name="Interface" type="s" access="read"/>
|
|
<property name="Driver" type="s" access="read"/>
|
|
<property name="Capabilities" type="u" access="read"/>
|
|
<property name="Ip4Address" type="i" access="read"/>
|
|
<property name="State" type="u" access="read"/>
|
|
<property name="Ip4Config" type="o" access="read"/>
|
|
<property name="Carrier" type="b" access="read"/>
|
|
|
|
<!-- Ugh, but I see no other way of getting the type on the caller
|
|
based on dbus object path only -->
|
|
<property name="DeviceType" type="u" access="read"/>
|
|
|
|
<signal name="StateChanged">
|
|
<arg name="state" type="u"/>
|
|
</signal>
|
|
|
|
<signal name="CarrierChanged">
|
|
<arg name="carrier_on" type="b"/>
|
|
</signal>
|
|
|
|
</interface>
|
|
</node>
|