diff options
Diffstat (limited to 'introspection')
| -rw-r--r-- | introspection/org.freedesktop.NetworkManager.Device.xml | 15 | ||||
| -rw-r--r-- | introspection/org.freedesktop.NetworkManager.xml | 15 |
2 files changed, 22 insertions, 8 deletions
diff --git a/introspection/org.freedesktop.NetworkManager.Device.xml b/introspection/org.freedesktop.NetworkManager.Device.xml index ee424101..be0a612c 100644 --- a/introspection/org.freedesktop.NetworkManager.Device.xml +++ b/introspection/org.freedesktop.NetworkManager.Device.xml @@ -21,6 +21,9 @@ each device in your application, use the object path. If you're looking for a way to track a specific piece of hardware across reboot or hotplug, use a MAC address or USB serial number. + + Note that non-UTF-8 characters are backslash escaped. Use g_strcompress() + to obtain the true (non-UTF-8) string. --> <property name="Udi" type="s" access="read"/> @@ -28,6 +31,9 @@ Interface: The name of the device's control (and often data) interface. + Note that non UTF-8 characters are backslash escaped, so the + resulting name may be longer then 15 characters. Use g_strcompress() + to revert the escaping. --> <property name="Interface" type="s" access="read"/> @@ -38,6 +44,9 @@ not refer to the actual data interface until the device has successfully established a data connection, indicated by the device's State becoming ACTIVATED. + Note that non UTF-8 characters are backslash escaped, so the + resulting name may be longer then 15 characters. Use g_strcompress() + to revert the escaping. --> <property name="IpInterface" type="s" access="read"/> @@ -45,6 +54,8 @@ Driver: The driver handling the device. + Non-UTF-8 sequences are backslash escaped. Use g_strcompress() + to revert. --> <property name="Driver" type="s" access="read"/> @@ -52,6 +63,8 @@ DriverVersion: The version of the driver handling the device. + Non-UTF-8 sequences are backslash escaped. Use g_strcompress() + to revert. --> <property name="DriverVersion" type="s" access="read"/> @@ -59,6 +72,8 @@ FirmwareVersion: The firmware version for the device. + Non-UTF-8 sequences are backslash escaped. Use g_strcompress() + to revert. --> <property name="FirmwareVersion" type="s" access="read"/> diff --git a/introspection/org.freedesktop.NetworkManager.xml b/introspection/org.freedesktop.NetworkManager.xml index ebd04a89..73cbc725 100644 --- a/introspection/org.freedesktop.NetworkManager.xml +++ b/introspection/org.freedesktop.NetworkManager.xml @@ -213,11 +213,10 @@ <!-- CheckpointCreate: - - @devices: a list of device paths for which a checkpoint should be created. An empty list means all devices. - @rollback_timeout: the time in seconds until NetworkManager will automatically rollback to the checkpoint. Set to zero for infinite. - @flags: optional flags that influence the creation. - @checkpoint: on success, returns the path of the checkpoint. + @devices: A list of device paths for which a checkpoint should be created. An empty list means all devices. + @rollback_timeout: The time in seconds until NetworkManager will automatically rollback to the checkpoint. Set to zero for infinite. + @flags: (<link linkend="NMCheckpointCreateFlags">NMCheckpointCreateFlags</link>) Flags for the creation. + @checkpoint: On success, the path of the new checkpoint. Create a checkpoint of the current networking configuration for given interfaces. If @rollback_timeout is not zero, a @@ -232,7 +231,7 @@ <!-- CheckpointDestroy: - @checkpoint: the checkpoint to be destroyed. Set to empty to cancel all pending checkpoints. + @checkpoint: The checkpoint to be destroyed. Set to empty to cancel all pending checkpoints. Destroy a previously created checkpoint. --> @@ -242,8 +241,8 @@ <!-- CheckpointRollback: - @checkpoint: the checkpoint to be rolled back. - @result: on return, a dictionary of devices and results. Devices are represented by their original D-Bus path; each result is a <link linkend="NMRollbackResult">RollbackResult</link>. + @checkpoint: The checkpoint to be rolled back. + @result: On return, a dictionary of devices and results. Devices are represented by their original D-Bus path; each result is a <link linkend="NMRollbackResult">RollbackResult</link>. Rollback a checkpoint before the timeout is reached. --> |