diff options
| author | Michael Biebl <biebl@debian.org> | 2025-02-12 13:46:50 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2025-02-12 13:46:50 +0100 |
| commit | 8bdf070ff046f482f6eb5e2b15ebc216f5d1e3da (patch) | |
| tree | f706478d189d54c6532e8863d4b0d5ff5575af60 /introspection | |
| parent | 818258cf34b83fbc754633295e1052d4752d7b15 (diff) | |
New upstream version 1.51.90 upstream/1.51.90
Diffstat (limited to 'introspection')
| -rw-r--r-- | introspection/meson.build | 1 | ||||
| -rw-r--r-- | introspection/org.freedesktop.NetworkManager.Device.Ipvlan.xml | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/introspection/meson.build b/introspection/meson.build index 81afa7d6..16bb5ed4 100644 --- a/introspection/meson.build +++ b/introspection/meson.build @@ -18,6 +18,7 @@ ifaces = [ 'org.freedesktop.NetworkManager.Device.Hsr', 'org.freedesktop.NetworkManager.Device.IPTunnel', 'org.freedesktop.NetworkManager.Device.Infiniband', + 'org.freedesktop.NetworkManager.Device.Ipvlan', 'org.freedesktop.NetworkManager.Device.Loopback', 'org.freedesktop.NetworkManager.Device.Lowpan', 'org.freedesktop.NetworkManager.Device.Macsec', diff --git a/introspection/org.freedesktop.NetworkManager.Device.Ipvlan.xml b/introspection/org.freedesktop.NetworkManager.Device.Ipvlan.xml new file mode 100644 index 00000000..db7a779d --- /dev/null +++ b/introspection/org.freedesktop.NetworkManager.Device.Ipvlan.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8"?> +<node name="/"> + <!-- + org.freedesktop.NetworkManager.Device.Ipvlan: + @short_description: IPVLAN Device. + --> + <interface name="org.freedesktop.NetworkManager.Device.Ipvlan"> + + <!-- + Parent: + @since: 1.52 + The object path of the parent device. + --> + <property name="Parent" type="o" access="read"/> + + <!-- + Vepa: + @since: 1.52 + The IPVLAN VEPA flag. + --> + <property name="Vepa" type="b" access="read"/> + + <!-- + Mode: + @since: 1.52 + The IPVLAN mode, one of "l2", "l3", "l3s". + --> + <property name="Mode" type="s" access="read"/> + + <!-- + Private: + @since: 1.52 + The IPVLAN private flag. + --> + <property name="Private" type="b" access="read"/> + + </interface> +</node> |