|  |  |  | libnm-util Reference Manual |  | 
|---|---|---|---|---|
| Top | Description | Object Hierarchy | Properties | ||||
#include <nm-setting-bridge-port.h> #define NM_SETTING_BRIDGE_PORT_SETTING_NAME enum NMSettingBridgePortError; #define NM_SETTING_BRIDGE_PORT_ERROR GQuark nm_setting_bridge_port_error_quark (void); #define NM_SETTING_BRIDGE_PORT_PRIORITY #define NM_SETTING_BRIDGE_PORT_PATH_COST #define NM_SETTING_BRIDGE_PORT_HAIRPIN_MODE NMSettingBridgePort; NMSettingBridgePortClass; NMSetting * nm_setting_bridge_port_new (void); 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);
GEnum +----NMSettingBridgePortError
GObject +----NMSetting +----NMSettingBridgePort
"hairpin-mode" gboolean : Read / Write "path-cost" guint : Read / Write / Construct "priority" guint : Read / Write / Construct
The NMSettingBridgePort object is a NMSetting subclass that describes optional properties that apply to bridge ports.
typedef enum {
	NM_SETTING_BRIDGE_PORT_ERROR_UNKNOWN = 0,      /*< nick=UnknownError >*/
	NM_SETTING_BRIDGE_PORT_ERROR_INVALID_PROPERTY, /*< nick=InvalidProperty >*/
	NM_SETTING_BRIDGE_PORT_ERROR_MISSING_PROPERTY, /*< nick=MissingProperty >*/
} NMSettingBridgePortError;
| unknown or unclassified error | |
| the property was invalid | |
| the property was missing and is required | 
Since 0.9.8
#define NM_SETTING_BRIDGE_PORT_ERROR nm_setting_bridge_port_error_quark ()
GQuark              nm_setting_bridge_port_error_quark  (void);
Registers an error quark for NMSettingBridgePort if necessary.
| Returns : | the error quark used for NMSettingBridgePort errors. | 
Since 0.9.8
typedef struct {
	NMSettingClass parent;
	/* Padding for future expansion */
	void (*_reserved1) (void);
	void (*_reserved2) (void);
	void (*_reserved3) (void);
	void (*_reserved4) (void);
} NMSettingBridgePortClass;
NMSetting *         nm_setting_bridge_port_new          (void);
Creates a new NMSettingBridgePort object with default values.
| Returns : | the new empty NMSettingBridgePort object. [transfer full] | 
Since 0.9.8
guint16             nm_setting_bridge_port_get_priority (NMSettingBridgePort *setting);
| 
 | the NMSettingBridgePort | 
| Returns : | the "priority" property of the setting | 
Since 0.9.8
guint16             nm_setting_bridge_port_get_path_cost
                                                        (NMSettingBridgePort *setting);
| 
 | the NMSettingBridgePort | 
| Returns : | the "path-cost" property of the setting | 
Since 0.9.8
gboolean            nm_setting_bridge_port_get_hairpin_mode
                                                        (NMSettingBridgePort *setting);
| 
 | the NMSettingBridgePort | 
| Returns : | the "hairpin-mode" property of the setting | 
Since 0.9.8
"hairpin-mode" property"hairpin-mode" gboolean : Read / Write
Enables or disabled 'hairpin mode' for the port, which allows frames to be sent back out through the port the frame was received on.
Default value: FALSE
Since 0.9.8
"path-cost" property"path-cost" guint : Read / Write / Construct
The Spanning Tree Protocol (STP) port cost for destinations via this port.
Allowed values: <= 65535
Default value: 100
Since 0.9.8
"priority" property"priority" guint : Read / Write / Construct
The Spanning Tree Protocol (STP) priority of this bridge port.
Allowed values: <= 63
Default value: 32
Since 0.9.8