mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-16 10:38:06 +02:00
* introspection/nm-device-802-11-wireless.xml src/nm-device-802-11-wireless.h src/nm-device-802-11-wireless.c - Add a PropertiesChanged signal for wireless device - Store currently associated access point - (periodic_update): generalize; update rate here too and emit the correct PropertiesChanged signal when stuff changes - (real_deactivate_quickly, nm_device_802_11_wireless_dispose, real_activation_cancel_handler): clear current_ap when device is deactivated - (link_to_specific_ap, get_ap_blacklisted, nm_device_802_11_wireless_get_best_ap): remove obsolete and unused code - (nm_device_802_11_wireless_get_bitrate): make static; unused anywhere outside this file - (real_set_hw_address): emit property changed signal if the card's MAC address changes - (real_act_stage1_prepare): set the initial current_ap to the AP the card is supposed to be connecting to - (activation_success_handler): send out property updates on successful activation - (get_property): pull bitrate from cached value; use OBJECT_PATH type for ACTIVE_ACCESS_POINT property because sometimes there won't be one and dbus-glib doesn't like marshalling NULL G_TYPE_OBJECTs - (nm_device_802_11_wireless_class_init): ACTIVE_ACCESS_POINT property is now boxed; add PropertiesChanged signal git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2934 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
29 lines
938 B
XML
29 lines
938 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<node name="/">
|
|
<interface name="org.freedesktop.NetworkManager.Device.Wireless">
|
|
<method name="GetAccessPoints">
|
|
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_device_get_access_points"/>
|
|
<arg name="access_points" 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="ActiveAccessPoint" type="o" access="read"/>
|
|
<property name="WirelessCapabilities" type="u" access="read"/>
|
|
|
|
<signal name="PropertiesChanged">
|
|
<arg name="properties" type="a{sv}"/>
|
|
</signal>
|
|
|
|
<signal name="AccessPointAdded">
|
|
<arg name="access_point" type="o"/>
|
|
</signal>
|
|
|
|
<signal name="AccessPointRemoved">
|
|
<arg name="access_point" type="o"/>
|
|
</signal>
|
|
|
|
</interface>
|
|
</node>
|