| Top |  |  |  |  | 
| NMSetting * | nm_setting_bridge_port_new () | 
| guint16 | nm_setting_bridge_port_get_priority () | 
| guint16 | nm_setting_bridge_port_get_path_cost () | 
| gboolean | nm_setting_bridge_port_get_hairpin_mode () | 
| void | nm_setting_bridge_port_add_vlan () | 
| guint | nm_setting_bridge_port_get_num_vlans () | 
| NMBridgeVlan * | nm_setting_bridge_port_get_vlan () | 
| void | nm_setting_bridge_port_remove_vlan () | 
| gboolean | nm_setting_bridge_port_remove_vlan_by_vid () | 
| void | nm_setting_bridge_port_clear_vlans () | 
| gboolean | hairpin-mode | Read / Write | 
| guint | path-cost | Read / Write | 
| guint | priority | Read / Write | 
| GPtrArray * | vlans | Read / Write | 
| #define | NM_SETTING_BRIDGE_PORT_SETTING_NAME | 
| #define | NM_SETTING_BRIDGE_PORT_PRIORITY | 
| #define | NM_SETTING_BRIDGE_PORT_PATH_COST | 
| #define | NM_SETTING_BRIDGE_PORT_HAIRPIN_MODE | 
| #define | NM_SETTING_BRIDGE_PORT_VLANS | 
| NMSettingBridgePort | 
The NMSettingBridgePort object is a NMSetting subclass that describes optional properties that apply to bridge ports.
NMSetting *
nm_setting_bridge_port_new (void);
Creates a new NMSettingBridgePort object with default values.
guint16
nm_setting_bridge_port_get_priority (NMSettingBridgePort *setting);
guint16
nm_setting_bridge_port_get_path_cost (NMSettingBridgePort *setting);
gboolean
nm_setting_bridge_port_get_hairpin_mode
                               (NMSettingBridgePort *setting);
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.
Since: 1.18
guint
nm_setting_bridge_port_get_num_vlans (NMSettingBridgePort *setting);
Since: 1.18
NMBridgeVlan * nm_setting_bridge_port_get_vlan (NMSettingBridgePort *setting,guint idx);
Since: 1.18
void nm_setting_bridge_port_remove_vlan (NMSettingBridgePort *setting,guint idx);
Removes the vlan at index idx
.
Since: 1.18
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.
Since: 1.18
void
nm_setting_bridge_port_clear_vlans (NMSettingBridgePort *setting);
Removes all configured VLANs.
Since: 1.18
“hairpin-mode” property  “hairpin-mode”             gboolean
Enables or disables "hairpin mode" for the port, which allows frames to be sent back out through the port the frame was received on.
Owner: NMSettingBridgePort
Flags: Read / Write
Default value: FALSE
“path-cost” property  “path-cost”                guint
The Spanning Tree Protocol (STP) port cost for destinations via this port.
Owner: NMSettingBridgePort
Flags: Read / Write
Allowed values: <= 65535
Default value: 100
“priority” property  “priority”                 guint
The Spanning Tree Protocol (STP) priority of this bridge port.
Owner: NMSettingBridgePort
Flags: Read / Write
Allowed values: <= 63
Default value: 32
“vlans” property  “vlans”                    GPtrArray *
Array of bridge VLAN objects. In addition to the VLANs specified here, the port will also have the default-pvid VLAN configured on the bridge by the bridge.vlan-default-pvid property.
In nmcli the VLAN list can be specified with the following syntax:
$vid pvid [, $vid pvid]...
where $vid is either a single id between 1 and 4094 or a range, represented as a couple of ids separated by a dash.
[type GPtrArray(NMBridgeVlan)]
Owner: NMSettingBridgePort
Flags: Read / Write
Since: 1.18