diff options
| author | Michael Biebl <biebl@debian.org> | 2011-03-18 20:17:47 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2011-03-18 20:17:47 +0100 |
| commit | e22c6e05e9ebc6cce941762020c5710b8014677b (patch) | |
| tree | 7e9fd7f8ae24a94b03f683e0cef9a346968e1e8b /introspection | |
| parent | a6b89d35fabd9f5934b84d7cde22e9268f92c3d3 (diff) | |
Imported Upstream version 0.8.3.998 upstream/0.8.3.998
Diffstat (limited to 'introspection')
| -rw-r--r-- | introspection/Makefile.in | 5 | ||||
| -rw-r--r-- | introspection/all.xml | 1 | ||||
| -rw-r--r-- | introspection/nm-device.xml | 7 | ||||
| -rw-r--r-- | introspection/nm-vpn-connection.xml | 42 |
4 files changed, 23 insertions, 32 deletions
diff --git a/introspection/Makefile.in b/introspection/Makefile.in index 3644aad6..0a37f352 100644 --- a/introspection/Makefile.in +++ b/introspection/Makefile.in @@ -149,6 +149,10 @@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ NM = @NM@ NMEDIT = @NMEDIT@ +NM_MAJOR_VERSION = @NM_MAJOR_VERSION@ +NM_MICRO_VERSION = @NM_MICRO_VERSION@ +NM_MINOR_VERSION = @NM_MINOR_VERSION@ +NM_VERSION = @NM_VERSION@ NSS_CFLAGS = @NSS_CFLAGS@ NSS_LIBS = @NSS_LIBS@ OBJDUMP = @OBJDUMP@ @@ -163,6 +167,7 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ +PKGCONFIG_PATH = @PKGCONFIG_PATH@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ diff --git a/introspection/all.xml b/introspection/all.xml index d6b2f236..1c32f3f3 100644 --- a/introspection/all.xml +++ b/introspection/all.xml @@ -40,6 +40,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</ <xi:include href="nm-dhcp4-config.xml"/> <xi:include href="nm-dhcp6-config.xml"/> <xi:include href="nm-settings.xml"/> +<xi:include href="nm-settings-system.xml"/> <xi:include href="nm-exported-connection.xml"/> <xi:include href="nm-active-connection.xml"/> <xi:include href="nm-vpn-connection.xml"/> diff --git a/introspection/nm-device.xml b/introspection/nm-device.xml index 016c121e..eaebdf35 100644 --- a/introspection/nm-device.xml +++ b/introspection/nm-device.xml @@ -55,6 +55,13 @@ Object path of the Ip6Config object describing the configuration of the device. Only valid when the device is in the NM_DEVICE_STATE_ACTIVATED state. </tp:docstring> </property> + <property name="Dhcp6Config" type="o" access="read"> + <tp:docstring> + Object path of the Dhcp6Config object describing the DHCP options + returned by the DHCP server. Only valid when the device is in the + NM_DEVICE_STATE_ACTIVATED state. + </tp:docstring> + </property> <property name="Managed" type="b" access="read"> <tp:docstring> Whether or not this device is managed by NetworkManager. diff --git a/introspection/nm-vpn-connection.xml b/introspection/nm-vpn-connection.xml index 3a47cdf1..65b91785 100644 --- a/introspection/nm-vpn-connection.xml +++ b/introspection/nm-vpn-connection.xml @@ -1,38 +1,6 @@ <?xml version="1.0" encoding="UTF-8" ?> <node name="/" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0"> - <interface name="org.freedesktop.NetworkManager.Connection.Active"> - <property name="ServiceName" type="s" access="read"> - <tp:docstring>The D-Bus service name providing this connection.</tp:docstring> - </property> - <property name="Connection" type="o" access="read"> - <tp:docstring>The path of the connection.</tp:docstring> - </property> - <property name="SpecificObject" type="o" access="read"> - <tp:docstring>A specific object associated with the active connection.</tp:docstring> - </property> - <property name="Devices" type="ao" access="read"> - <tp:docstring>Array of object paths representing devices which are part of this active connection.</tp:docstring> - </property> - <property name="State" type="u" access="read" tp:type="NM_ACTIVE_CONNECTION_STATE"> - <tp:docstring>The state of this active connection.</tp:docstring> - </property> - <property name="Default" type="b" access="read"> - <tp:docstring>Whether this active connection is the default connection, i.e. whether it currently owns the default route.</tp:docstring> - </property> - <property name="Vpn" type="b" access="read"> - <tp:docstring>Whether this active connection is also a VPN connection.</tp:docstring> - </property> - - <signal name="PropertiesChanged"> - <arg name="properties" type="a{sv}" tp:type="String_Variant_Map"> - <tp:docstring> - A dictionary mapping property names to variant boxed values - </tp:docstring> - </arg> - </signal> - </interface> - <interface name="org.freedesktop.NetworkManager.VPN.Connection"> <tp:docstring> Represents an active connection to a Virtual Private Network. @@ -162,6 +130,16 @@ Necessary secrets for the VPN connection were not provided. </tp:docstring> </tp:enumvalue> + <tp:enumvalue suffix="LOGIN_FAILED" value="10"> + <tp:docstring> + Authentication to the VPN server failed. + </tp:docstring> + </tp:enumvalue> + <tp:enumvalue suffix="CONNECTION_REMOVED" value="11"> + <tp:docstring> + The connection was deleted from settings. + </tp:docstring> + </tp:enumvalue> </tp:enum> </interface> </node> |