From afcd268ea7b1149fbfb66bce4eca659b675da0a2 Mon Sep 17 00:00:00 2001
From: Michael Biebl Creates a new NMSettingVlan object with default values. Returns the number of entries in the
@@ -371,12 +371,12 @@ properties of this setting. Retrieve one of the entries of the “ingress_priority_map”
or “egress_priority_map” properties of this setting. Adds a priority mapping to the “ingress_priority_map” or
“egress_priority_map” properties of the setting. If Removes the priority map at index Removes the priority map
-guint32
+guint32
nm_setting_vlan_get_id ()
@@ -66,7 +66,7 @@
-guint32
+guint32
nm_setting_vlan_get_flags ()
@@ -74,7 +74,7 @@
-gint32
+gint32
nm_setting_vlan_get_num_priorities ()
@@ -82,7 +82,7 @@
-gboolean
+gboolean
nm_setting_vlan_get_priority ()
@@ -90,7 +90,7 @@
-gboolean
+gboolean
nm_setting_vlan_add_priority ()
@@ -106,7 +106,7 @@
-gboolean
+gboolean
nm_setting_vlan_remove_priority_by_value ()
@@ -114,7 +114,7 @@
-gboolean
+gboolean
nm_setting_vlan_remove_priority_str_by_value ()
@@ -130,7 +130,7 @@
-gboolean
+gboolean
nm_setting_vlan_add_priority_str ()
@@ -149,7 +149,7 @@
-
@@ -159,18 +159,18 @@
GStrv
+GStrv
egress-priority-map
Read / Write
Read / Write / Construct
-
guint
+guint
id
Read / Write / Construct
-
GStrv
+GStrv
ingress-priority-map
Read / Write
@@ -230,11 +230,11 @@
-gchar *
+gchar *
parent
Read / Write / Construct
Object Hierarchy
- GEnum
+
GEnum
╰── NMVlanPriorityMap
- GFlags
+ GFlags
╰── NMVlanFlags
- GObject
+ GObject
╰── NMSetting
╰── NMSettingVlan
@@ -253,7 +253,7 @@ nm_setting_vlan_new (void<
@@ -418,17 +418,17 @@ or
nm_setting_vlan_get_id ()
-guint32
+
guint32
nm_setting_vlan_get_id (
NMSettingVlan *setting);Parameters
@@ -310,7 +310,7 @@ nm_setting_vlan_get_id (
nm_setting_vlan_get_flags ()
-guint32
+
guint32
nm_setting_vlan_get_flags (
NMSettingVlan *setting);Parameters
@@ -335,7 +335,7 @@ nm_setting_vlan_get_flags (
nm_setting_vlan_get_num_priorities ()
-gint32
+
gint32
nm_setting_vlan_get_num_priorities (
NMSettingVlan *setting,
NMVlanPriorityMap map);
nm_setting_vlan_get_priority ()
-gboolean
+
gboolean
nm_setting_vlan_get_priority (
+ NMSettingVlan *setting,
NMVlanPriorityMap map,
- guint32 idx,
- guint32 *out_from,
- guint32 *out_to);guint32 idx,
+ guint32 *out_from,
+ guint32 *out_to);
nm_setting_vlan_add_priority ()
-gboolean
+
gboolean
nm_setting_vlan_add_priority (
+ NMSettingVlan *setting,
NMVlanPriorityMap map,
- guint32 from,
- guint32 to);guint32 from,
+ guint32 to);from
is
@@ -481,8 +481,8 @@ toReturns
-TRUE if the new priority mapping was successfully added to the
-list, FALSE if errorTRUE if the new priority mapping was successfully added to the
+list, FALSE if error
@@ -491,7 +491,7 @@ list, void
nm_setting_vlan_remove_priority (NMSettingVlan *setting,
NMVlanPriorityMap map,
- guint32 idx);
+ guint32 idx);
idx
from the
“ingress_priority_map” or “egress_priority_map”
@@ -527,12 +527,12 @@ properties.
nm_setting_vlan_remove_priority_by_value ()
-gboolean
+
gboolean
nm_setting_vlan_remove_priority_by_value
(
+ NMSettingVlan *setting,
NMVlanPriorityMap map,
- guint32 from,
- guint32 to);guint32 from,
+ guint32 to);form
:to
from the “ingress_priority_map”
@@ -575,13 +575,13 @@ toReturns
-TRUE if the priority mapping was found and removed; FALSE if it was not.TRUE if the priority mapping was found and removed; FALSE if it was not.
nm_setting_vlan_remove_priority_str_by_value ()
-gboolean
+
gboolean
nm_setting_vlan_remove_priority_str_by_value
(
NMSettingVlan *setting,
NMVlanPriorityMap map,
@@ -620,7 +620,7 @@ properties.
Returns
-TRUE if the priority mapping was found and removed; FALSE if it was not.TRUE if the priority mapping was found and removed; FALSE if it was not.
@@ -657,7 +657,7 @@ nm_setting_vlan_clear_priorities (
nm_setting_vlan_add_priority_str ()
-gboolean
+
gboolean
nm_setting_vlan_add_priority_str (
@@ -693,8 +693,8 @@ the Linux SKB priorities to 802.1p priorities.
NMSettingVlan *setting,
NMVlanPriorityMap map,
const char *str);
“egress-priority-map” property“egress-priority-map” GStrv+
“egress-priority-map” GStrv
For outgoing packets, a list of mappings from Linux SKB priorities to 802.1p priorities. The mapping is given in the format "from:to" where both "from" and "to" are unsigned integers, ie "7:3".
@@ -859,7 +859,7 @@ is still considered as 0.“id” property“id” guint+
“id” guint
The VLAN identifier that the interface created by this connection should be assigned. The valid range is from 0 to 4094, without the reserved id 4095.
Flags: Read / Write / Construct
@@ -869,7 +869,7 @@ be assigned. The valid range is from 0 to 4094, without the reserved id 4095.“ingress-priority-map” property“ingress-priority-map” GStrv+
“ingress-priority-map” GStrv
For incoming packets, a list of mappings from 802.1p priorities to Linux SKB priorities. The mapping is given in the format "from:to" where both "from" and "to" are unsigned integers, ie "7:3".
@@ -878,7 +878,7 @@ SKB priorities. The mapping is given in the format "from:to" where both“parent” property“parent” gchar *+
“parent” gchar *
If given, specifies the parent interface name or parent connection UUID from which this VLAN interface should be created. If this property is not specified, the connection must contain an NMSettingWired setting @@ -889,6 +889,6 @@ with a