mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-10 16:00:32 +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
31 lines
1,002 B
XML
31 lines
1,002 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<node name="/">
|
|
<interface name="org.freedesktop.NetworkManager.Device.Wireless">
|
|
|
|
<method name="Activate">
|
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_device_activate"/>
|
|
<arg name="access_point" type="o" direction="in"/>
|
|
<arg name="user_requested" type="b" direction="in"/>
|
|
</method>
|
|
|
|
<method name="GetActiveNetworks">
|
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_device_get_active_networks"/>
|
|
<arg name="networks" type="ao" direction="out"/>
|
|
</method>
|
|
|
|
<property name="HwAddress" type="s" access="read"/>
|
|
<property name="Mode" type="i" access="read"/>
|
|
<property name="Bitrate" type="i" access="read"/>
|
|
<property name="ActiveNetwork" type="o" access="read"/>
|
|
|
|
<signal name="NetworkAdded">
|
|
<arg name="network" type="o"/>
|
|
</signal>
|
|
|
|
<signal name="NetworkRemoved">
|
|
<arg name="network" type="o"/>
|
|
</signal>
|
|
|
|
</interface>
|
|
</node>
|