diff options
| author | Michael Biebl <biebl@debian.org> | 2014-07-06 02:16:10 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2014-07-06 02:16:10 +0200 |
| commit | 33491bc4279481db8ae47213e34a6d695a0e8830 (patch) | |
| tree | 097d2b0fdff3fae6885381ae5e57a182cd8cbbba /introspection/nm-device-gre.xml | |
| parent | 59c3714a494c3b3765657c0551ad82842d98a7d2 (diff) | |
Imported Upstream version 0.9.10.0 upstream/0.9.10.0
Diffstat (limited to 'introspection/nm-device-gre.xml')
| -rw-r--r-- | introspection/nm-device-gre.xml | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/introspection/nm-device-gre.xml b/introspection/nm-device-gre.xml new file mode 100644 index 00000000..ae418aab --- /dev/null +++ b/introspection/nm-device-gre.xml @@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="UTF-8" ?> + +<node name="/" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0"> + <interface name="org.freedesktop.NetworkManager.Device.Gre"> + + <property name="Parent" type="o" access="read"> + <tp:docstring> + The object path of the parent device. + </tp:docstring> + </property> + + <property name="InputFlags" type="q" access="read"> + <tp:docstring> + The expected set of GRE flags for incoming packets. (The + values are specified by the GRE specification. On Linux, they + are defined in <linux/if_tunnel.h>. Eg, GRE_KEY for the + 'Key Present' bit.) + </tp:docstring> + </property> + + <property name="OutputFlags" type="q" access="read"> + <tp:docstring> + The set of GRE flags to use for outgoing packets. (The + values are specified by the GRE specification. On Linux, they + are defined in <linux/if_tunnel.h>. Eg, GRE_KEY for the + 'Key Present' bit.) + </tp:docstring> + </property> + + <property name="InputKey" type="u" access="read"> + <tp:docstring> + Expected input key (if the "Key Present" bit is set in the input flags). + </tp:docstring> + </property> + + <property name="OutputKey" type="u" access="read"> + <tp:docstring> + Output key (if the "Key Present" bit is set in the output flags). + </tp:docstring> + </property> + + <property name="Local" type="s" access="read"> + <tp:docstring> + The local end of the tunnel. + </tp:docstring> + </property> + + <property name="Remote" type="s" access="read"> + <tp:docstring> + The remote end of the tunnel. + </tp:docstring> + </property> + + <property name="Ttl" type="y" access="read"> + <tp:docstring> + The value to use in the IP TTL field for tunnel packets. + </tp:docstring> + </property> + + <property name="Tos" type="y" access="read"> + <tp:docstring> + The value to use in the IP ToS field for tunnel packets. + </tp:docstring> + </property> + + <property name="PathMtuDiscovery" type="b" access="read"> + <tp:docstring> + Whether path MTU discovery is performed. + </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> +</node> |