diff options
| author | Michael Biebl <biebl@debian.org> | 2015-08-28 01:13:48 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2015-08-28 01:13:48 +0200 |
| commit | 81836c2d44802b4cca833d7775dd627e0797a7e2 (patch) | |
| tree | 91154e6cefc0465306603f51ec0010d9963bbea4 /introspection | |
| parent | 50a58f0fabd8a34c1b6108a107e08abe3c1ccd24 (diff) | |
Imported Upstream version 1.0.6 upstream/1.0.6
Diffstat (limited to 'introspection')
| -rw-r--r-- | introspection/nm-access-point.xml | 7 | ||||
| -rw-r--r-- | introspection/nm-device-wifi.xml | 3 | ||||
| -rw-r--r-- | introspection/nm-device.xml | 34 | ||||
| -rw-r--r-- | introspection/nm-manager.xml | 8 |
4 files changed, 51 insertions, 1 deletions
diff --git a/introspection/nm-access-point.xml b/introspection/nm-access-point.xml index 21f238ff..ef5af6ab 100644 --- a/introspection/nm-access-point.xml +++ b/introspection/nm-access-point.xml @@ -30,6 +30,13 @@ <property name="Strength" type="y" access="read"> <tp:docstring>The current signal quality of the access point, in percent.</tp:docstring> </property> + <property name="LastSeen" type="i" access="read"> + <tp:docstring> + 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. + </tp:docstring> + </property> <signal name="PropertiesChanged"> <arg name="properties" type="a{sv}" tp:type="String_Variant_Map"> diff --git a/introspection/nm-device-wifi.xml b/introspection/nm-device-wifi.xml index d1c5313e..b94aae84 100644 --- a/introspection/nm-device-wifi.xml +++ b/introspection/nm-device-wifi.xml @@ -37,7 +37,8 @@ <annotation name="org.freedesktop.DBus.GLib.Async" value=""/> <arg name="options" type="a{sv}" direction="in"> <tp:docstring> - Options of scan (currently unused argument). + Options of scan. + Currently 'ssids' option with value of "aay" type is supported. </tp:docstring> </arg> <tp:docstring> diff --git a/introspection/nm-device.xml b/introspection/nm-device.xml index e405a384..b2e3827e 100644 --- a/introspection/nm-device.xml +++ b/introspection/nm-device.xml @@ -139,6 +139,12 @@ The device MTU (maximum transmission unit). </tp:docstring> </property> + <property name="Metered" type="u" access="read" tp:type="NM_METERED"> + <tp:docstring> + Whether the amount of traffic flowing through the device is + subject to limitations, for example set by service providers. + </tp:docstring> + </property> <method name="Disconnect"> <annotation name="org.freedesktop.DBus.GLib.CSymbol" value="impl_device_disconnect"/> @@ -654,6 +660,34 @@ </tp:enumvalue> </tp:enum> + <tp:enum name="NM_METERED" type="u"> + <tp:enumvalue suffix="UNKNOWN" value="0"> + <tp:docstring> + The device metered status is unknown. + </tp:docstring> + </tp:enumvalue> + <tp:enumvalue suffix="YES" value="1"> + <tp:docstring> + The device is metered and the value was statically set. + </tp:docstring> + </tp:enumvalue> + <tp:enumvalue suffix="NO" value="2"> + <tp:docstring> + The device is not metered and the value was statically set. + </tp:docstring> + </tp:enumvalue> + <tp:enumvalue suffix="GUESS_YES" value="3"> + <tp:docstring> + The device is metered and the value was guessed. + </tp:docstring> + </tp:enumvalue> + <tp:enumvalue suffix="GUESS_NO" value="4"> + <tp:docstring> + The device is not metered and the value was guessed. + </tp:docstring> + </tp:enumvalue> + </tp:enum> + <tp:struct name="NM_DEVICE_STATE_REASON_STRUCT"> <tp:member type="u" name="state" tp:type="NM_DEVICE_STATE"> <tp:docstring> diff --git a/introspection/nm-manager.xml b/introspection/nm-manager.xml index a9bb6dcf..f0d04438 100644 --- a/introspection/nm-manager.xml +++ b/introspection/nm-manager.xml @@ -335,6 +335,14 @@ </tp:docstring> </property> + <property name="Metered" type="u" access="read" tp:type="NM_METERED"> + <tp:docstring> + Wheter the connectivity is metered. This is equivalent to the + metered property of the device associated with the primary + connection. + </tp:docstring> + </property> + <property name="ActivatingConnection" type="o" access="read"> <tp:docstring> The object path of an active connection that is currently |