mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-26 11:10:09 +01:00
* introspection/nm-ip4-config.xml: Implement. * libnm-glib/libnm-glib-test.c: Use new DBUS API in tests. * libnm-glib/nm-ip4-config.c: * libnm-glib/nm-ip4-config.c: Implement. * src/nm-ap-security[-*]: Remove circular dependencies between APs and AP securities. APs reference security. * src/nm-device-802-11-wireless.c: Implement missing properties that need to be exported over DBUS. * src/nm-device-802-3-ethernet.c: Ditto. * src/NetworkManagerAP.c: * src/NetworkManagerAP.h: - Convert to GObject, export over DBUS. * src/nm-ip4-config.h: * src/nm-ip4-config.h: - Convert to GObject, export over DBUS. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2322 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
30 lines
1,007 B
XML
30 lines
1,007 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<node name="/">
|
|
<interface name="org.freedesktop.NetworkManager.Device">
|
|
<method name="Deactivate">
|
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_device_deactivate"/>
|
|
</method>
|
|
|
|
<property name="Udi" type="s" access="read"/>
|
|
<property name="Interface" type="s" access="read"/>
|
|
<property name="Driver" type="s" access="read"/>
|
|
<property name="Capabilities" type="i" access="read"/>
|
|
<property name="Ip4Address" type="i" access="read"/>
|
|
<property name="State" type="u" access="read"/>
|
|
<property name="Ip4Config" type="o" 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>
|