diff options
Diffstat (limited to 'introspection/org.freedesktop.NetworkManager.AccessPoint.xml')
| -rw-r--r-- | introspection/org.freedesktop.NetworkManager.AccessPoint.xml | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/introspection/org.freedesktop.NetworkManager.AccessPoint.xml b/introspection/org.freedesktop.NetworkManager.AccessPoint.xml new file mode 100644 index 00000000..617c8671 --- /dev/null +++ b/introspection/org.freedesktop.NetworkManager.AccessPoint.xml @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="UTF-8"?> +<node name="/"> + <interface name="org.freedesktop.NetworkManager.AccessPoint"> + + <!-- + Flags: + + Flags describing the capabilities of the access point. + + Returns: <link linkend="NM80211ApFlags">NM80211ApFlags</link> + --> + <property name="Flags" type="u" access="read"/> + + <!-- + WpaFlags: + + Flags describing the access point's capabilities according to WPA (Wifi + Protected Access). + + Returns: <link linkend="NM80211ApSecurityFlags">NM80211ApSecurityFlags</link> + --> + <property name="WpaFlags" type="u" access="read"/> + + <!-- + RsnFlags: + + Flags describing the access point's capabilities according to the RSN + (Robust Secure Network) protocol. + + Returns: <link linkend="NM80211ApSecurityFlags">NM80211ApSecurityFlags</link> + --> + <property name="RsnFlags" type="u" access="read"/> + + <!-- + Ssid: + + The Service Set Identifier identifying the access point. + --> + <property name="Ssid" type="ay" access="read"> + <!-- gdbus-codegen assumes that "ay" means "non-UTF-8 string" and + won't deal with '\0' bytes correctly. + --> + <annotation name="org.gtk.GDBus.C.ForceGVariant" value="1"/> + </property> + + <!-- + Frequency: + + The radio channel frequency in use by the access point, in MHz. + --> + <property name="Frequency" type="u" access="read"/> + + <!-- + HwAddress: + + The hardware address (BSSID) of the access point. + --> + <property name="HwAddress" type="s" access="read"/> + + <!-- + Mode: + + Describes the operating mode of the access point. + + Returns: <link linkend="NM80211Mode">NM80211Mode</link> + --> + <property name="Mode" type="u" access="read"/> + + <!-- + MaxBitrate: + + The maximum bitrate this access point is capable of, in kilobits/second + (Kb/s). + --> + <property name="MaxBitrate" type="u" access="read"/> + + <!-- + Strength: + + The current signal quality of the access point, in percent. + --> + <property name="Strength" type="y" access="read"/> + + <!-- + LastSeen: + + The timestamp (in CLOCK_BOOTTIME seconds) for the last time the access + point was found in scan results. A value of -1 means the access point has + never been found in scan results. + --> + <property name="LastSeen" type="i" access="read"/> + + <!-- + PropertiesChanged: + @properties: A dictionary mapping property names to variant boxed values + + DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0. + --> + <signal name="PropertiesChanged"> + <arg name="properties" type="a{sv}"/> + </signal> + </interface> +</node> |