From 1372848511cb896b80b51ed1a3e9606bd9816631 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Fri, 10 Feb 2023 11:50:34 +0100 Subject: New upstream version 1.42.0 --- docs/libnm/html/NMSettingBridgePort.html | 485 ------------------------------- 1 file changed, 485 deletions(-) delete mode 100644 docs/libnm/html/NMSettingBridgePort.html (limited to 'docs/libnm/html/NMSettingBridgePort.html') diff --git a/docs/libnm/html/NMSettingBridgePort.html b/docs/libnm/html/NMSettingBridgePort.html deleted file mode 100644 index dfd522e0..00000000 --- a/docs/libnm/html/NMSettingBridgePort.html +++ /dev/null @@ -1,485 +0,0 @@ - - - - -NMSettingBridgePort: libnm Reference Manual - - - - - - - - - - - - - - - - -
-
-
- - -
-

NMSettingBridgePort

-

NMSettingBridgePort — Describes connection properties for bridge ports

-
- -
-

Types and Values

- -
-
-

Description

-

The NMSettingBridgePort object is a NMSetting subclass that describes -optional properties that apply to bridge ports.

-
-
-

Functions

-
-

nm_setting_bridge_port_new ()

-
NMSetting *
-nm_setting_bridge_port_new (void);
-

Creates a new NMSettingBridgePort object with default values.

-
-

Returns

-

the new empty NMSettingBridgePort object.

-

[transfer full]

-
-
-
-
-

nm_setting_bridge_port_get_priority ()

-
guint16
-nm_setting_bridge_port_get_priority (NMSettingBridgePort *setting);
-
-

Parameters

-
----- - - - - - -

setting

the NMSettingBridgePort

 
-
-
-

Returns

-

the “priority” property of the setting

-
-
-
-
-

nm_setting_bridge_port_get_path_cost ()

-
guint16
-nm_setting_bridge_port_get_path_cost (NMSettingBridgePort *setting);
-
-

Parameters

-
----- - - - - - -

setting

the NMSettingBridgePort

 
-
-
-

Returns

-

the “path-cost” property of the setting

-
-
-
-
-

nm_setting_bridge_port_get_hairpin_mode ()

-
gboolean
-nm_setting_bridge_port_get_hairpin_mode
-                               (NMSettingBridgePort *setting);
-
-

Parameters

-
----- - - - - - -

setting

the NMSettingBridgePort

 
-
-
-

Returns

-

the “hairpin-mode” property of the setting

-
-
-
-
-

nm_setting_bridge_port_add_vlan ()

-
void
-nm_setting_bridge_port_add_vlan (NMSettingBridgePort *setting,
-                                 NMBridgeVlan *vlan);
-

Appends a new vlan and associated information to the setting. The -given vlan gets sealed and a reference to it is added.

-
-

Parameters

-
----- - - - - - - - - - - - - -

setting

the NMSettingBridgePort

 

vlan

the vlan to add

 
-
-

Since: 1.18

-
-
-
-

nm_setting_bridge_port_get_num_vlans ()

-
guint
-nm_setting_bridge_port_get_num_vlans (NMSettingBridgePort *setting);
-
-

Parameters

-
----- - - - - - -

setting

the NMSettingBridgePort

 
-
-
-

Returns

-

the number of VLANs

-
-

Since: 1.18

-
-
-
-

nm_setting_bridge_port_get_vlan ()

-
NMBridgeVlan *
-nm_setting_bridge_port_get_vlan (NMSettingBridgePort *setting,
-                                 guint idx);
-
-

Parameters

-
----- - - - - - - - - - - - - -

setting

the NMSettingBridgePort

 

idx

index number of the VLAN to return

 
-
-
-

Returns

-

the VLAN at index idx -.

-

[transfer none]

-
-

Since: 1.18

-
-
-
-

nm_setting_bridge_port_remove_vlan ()

-
void
-nm_setting_bridge_port_remove_vlan (NMSettingBridgePort *setting,
-                                    guint idx);
-

Removes the vlan at index idx -.

-
-

Parameters

-
----- - - - - - - - - - - - - -

setting

the NMSettingBridgePort

 

idx

index number of the VLAN.

 
-
-

Since: 1.18

-
-
-
-

nm_setting_bridge_port_remove_vlan_by_vid ()

-
gboolean
-nm_setting_bridge_port_remove_vlan_by_vid
-                               (NMSettingBridgePort *setting,
-                                guint16 vid_start,
-                                guint16 vid_end);
-

Remove the VLAN with range vid_start - to vid_end -. -If vid_end - is zero, it is assumed to be equal to vid_start - -and so the single-id VLAN with id vid_start - is removed.

-
-

Parameters

-
----- - - - - - - - - - - - - - - - - - -

setting

the NMSettingBridgePort

 

vid_start

the vlan start index

 

vid_end

the vlan end index

 
-
-
-

Returns

-

TRUE if the vlan was found and removed; FALSE otherwise

-
-

Since: 1.18

-
-
-
-

nm_setting_bridge_port_clear_vlans ()

-
void
-nm_setting_bridge_port_clear_vlans (NMSettingBridgePort *setting);
-

Removes all configured VLANs.

-
-

Parameters

-
----- - - - - - -

setting

the NMSettingBridgePort

 
-
-

Since: 1.18

-
-
-
-

Types and Values

-
-

NM_SETTING_BRIDGE_PORT_SETTING_NAME

-
#define NM_SETTING_BRIDGE_PORT_SETTING_NAME "bridge-port"
-
-
-
-
-

NM_SETTING_BRIDGE_PORT_PRIORITY

-
#define NM_SETTING_BRIDGE_PORT_PRIORITY     "priority"
-
-
-
-
-

NM_SETTING_BRIDGE_PORT_PATH_COST

-
#define NM_SETTING_BRIDGE_PORT_PATH_COST    "path-cost"
-
-
-
-
-

NM_SETTING_BRIDGE_PORT_HAIRPIN_MODE

-
#define NM_SETTING_BRIDGE_PORT_HAIRPIN_MODE "hairpin-mode"
-
-
-
-
-

NM_SETTING_BRIDGE_PORT_VLANS

-
#define NM_SETTING_BRIDGE_PORT_VLANS        "vlans"
-
-
-
-
- - - \ No newline at end of file -- cgit 1.3.0-6-gf8a5