mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-04 15:18:05 +02:00
Patch from Helmut Schaa <hschaa@suse.de> (and more bits from me) * src/NetworkManagerAP.c src/NetworkManagerAP.h libnm-glib/nm-access-point.c libnm-glib/nm-access-point.h - Make 'rate' property a guint32 to better match with WEXT and wpa_supplicant and to allow representation of higher bitrates * src/nm-device-802-11-wireless.c introspection/nm-device-802-11-wireless.xml libnm-glib/nm-device-802-11-wireless.c libnm-glib/nm-device-802-11-wireless.h - Make 'bitrate' property a guint32 to match AP 'rate' property type * src/nm-device-802-3-ethernet.c src/nm-device-802-3-ethernet.h introspection/nm-device-802-3-ethernet.xml libnm-glib/nm-device-802-3-ethernet.c libnm-glib/nm-device-802-3-ethernet.h - Make 'speed' property a guint32 to match other speed/rate types - Make nm_device_802_3_ethernet_get_speed() static * test/nm-tool.c - Update for the changes above git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3030 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="u" 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>
|