diff options
| author | Michael Biebl <biebl@debian.org> | 2017-01-17 20:25:47 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2017-01-17 20:25:47 +0100 |
| commit | bed53db3e064450b56e23ec654f40a3bafe58815 (patch) | |
| tree | 314508d6c904b1224dab2070e0cfdd5a02d7dd89 /introspection/org.freedesktop.NetworkManager.VPN.Connection.xml | |
| parent | 7135a6e87c938139e3a5db121d62dcaa783345d1 (diff) | |
| parent | 58f8be580039b0575b197b9573a1c92745d96d30 (diff) | |
Merge tag 'upstream/1.5.90' into experimental
Upstream version 1.5.90
Diffstat (limited to 'introspection/org.freedesktop.NetworkManager.VPN.Connection.xml')
| -rw-r--r-- | introspection/org.freedesktop.NetworkManager.VPN.Connection.xml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/introspection/org.freedesktop.NetworkManager.VPN.Connection.xml b/introspection/org.freedesktop.NetworkManager.VPN.Connection.xml new file mode 100644 index 00000000..897cea0b --- /dev/null +++ b/introspection/org.freedesktop.NetworkManager.VPN.Connection.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8"?> +<node name="/"> + + <!-- + org.freedesktop.NetworkManager.VPN.Connection: + + Represents an active connection to a Virtual Private Network. + --> + <interface name="org.freedesktop.NetworkManager.VPN.Connection"> + <annotation name="org.gtk.GDBus.C.Name" value="VpnConnection"/> + + <!-- + 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> + + <!-- + VpnState: + + The VPN-specific state of the connection. + + Returns: <link linkend="NMVpnConnectionState">NMVpnConnectionState</link> + --> + <property name="VpnState" type="u" access="read"/> + + <!-- + Banner: + + The banner string of the VPN connection. + --> + <property name="Banner" type="s" access="read"/> + + <!-- + VpnStateChanged: + @state: (<link linkend="NMVpnConnectionState">NMVpnConnectionState</link>) The new state of the VPN connection. + @reason: (<link linkend="NMVpnConnectionStateReason">NMVpnConnectionStateReason</link>) Reason code describing the change to the new state. + + Emitted when the state of the VPN connection has changed. + --> + <signal name="VpnStateChanged"> + <arg name="state" type="u"/> + <arg name="reason" type="u"/> + </signal> + </interface> +</node> |