summaryrefslogtreecommitdiff
path: root/introspection
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2014-01-08 11:40:56 -0600
committerDan Williams <dcbw@redhat.com>2014-01-23 17:34:12 -0600
commit67676c65bf4dd0277544fdefe98965c6fbbe6344 (patch)
tree657c56167b92bb9b9c87e68dbaf2752b9a497233 /introspection
parenta0c4483bdb9b4334da4d74a22db5d28e8bc8ccef (diff)
downloadNetworkManager-67676c65bf4dd0277544fdefe98965c6fbbe6344.tar.gz
api/wifi: add GetAllAccessPoints() method
The original GetAccessPoints() method call never returned hidden SSID access points. That's useful though, and the new AccessPoints property returns all of them too, so add this new method to return all access points, including hidden SSID ones.
Diffstat (limited to 'introspection')
-rw-r--r--introspection/nm-device-wifi.xml20
1 files changed, 18 insertions, 2 deletions
diff --git a/introspection/nm-device-wifi.xml b/introspection/nm-device-wifi.xml
index fff74337af..65c7b71dce 100644
--- a/introspection/nm-device-wifi.xml
+++ b/introspection/nm-device-wifi.xml
@@ -6,11 +6,27 @@
<annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_device_get_access_points"/>
<arg name="access_points" type="ao" direction="out">
<tp:docstring>
- List of access point object paths
+ List of access point object paths.
</tp:docstring>
</arg>
<tp:docstring>
- Get the list of access points visible to this device.
+ DEPRECATED. Get the list of access points visible to this device. Note
+ that this list does not include access points which hide their SSID. To
+ retrieve a list of all access points (including hidden ones) use the
+ GetAllAccessPoints() method.
+ </tp:docstring>
+ </method>
+
+ <method name="GetAllAccessPoints">
+ <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_device_get_all_access_points"/>
+ <arg name="access_points" type="ao" direction="out">
+ <tp:docstring>
+ List of access point object paths.
+ </tp:docstring>
+ </arg>
+ <tp:docstring>
+ Get the list of all access points visible to this device, including
+ hidden ones for which the SSID is not yet known.
</tp:docstring>
</method>