about summary refs log tree commit diff
path: root/libnm-util/nm-setting-bridge-port.c
diff options
context:
space:
mode:
Diffstat (limited to 'libnm-util/nm-setting-bridge-port.c')
-rw-r--r--libnm-util/nm-setting-bridge-port.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/libnm-util/nm-setting-bridge-port.c b/libnm-util/nm-setting-bridge-port.c
index d7f3dd59..c1abf9c8 100644
--- a/libnm-util/nm-setting-bridge-port.c
+++ b/libnm-util/nm-setting-bridge-port.c
@@ -38,6 +38,8 @@
  *
  * The #NMSettingBridgePort object is a #NMSetting subclass that describes
  * optional properties that apply to bridge ports.
+ *
+ * Since: 0.9.8
  **/
 
 /**
@@ -46,6 +48,8 @@
  * Registers an error quark for #NMSettingBridgePort if necessary.
  *
  * Returns: the error quark used for #NMSettingBridgePort errors.
+ *
+ * Since: 0.9.8
  **/
 GQuark
 nm_setting_bridge_port_error_quark (void)
@@ -87,6 +91,8 @@ enum {
  * @setting: the #NMSettingBridgePort
  *
  * Returns: the #NMSettingBridgePort:priority property of the setting
+ *
+ * Since: 0.9.8
  **/
 guint16
 nm_setting_bridge_port_get_priority (NMSettingBridgePort *setting)
@@ -101,6 +107,8 @@ nm_setting_bridge_port_get_priority (NMSettingBridgePort *setting)
  * @setting: the #NMSettingBridgePort
  *
  * Returns: the #NMSettingBridgePort:path-cost property of the setting
+ *
+ * Since: 0.9.8
  **/
 guint16
 nm_setting_bridge_port_get_path_cost (NMSettingBridgePort *setting)
@@ -115,6 +123,8 @@ nm_setting_bridge_port_get_path_cost (NMSettingBridgePort *setting)
  * @setting: the #NMSettingBridgePort
  *
  * Returns: the #NMSettingBridgePort:hairpin-mode property of the setting
+ *
+ * Since: 0.9.8
  **/
 gboolean
 nm_setting_bridge_port_get_hairpin_mode (NMSettingBridgePort *setting)
@@ -164,6 +174,8 @@ verify (NMSetting *setting, GSList *all_settings, GError **error)
  * Creates a new #NMSettingBridgePort object with default values.
  *
  * Returns: (transfer full): the new empty #NMSettingBridgePort object
+ *
+ * Since: 0.9.8
  **/
 NMSetting *
 nm_setting_bridge_port_new (void)
@@ -239,6 +251,8 @@ nm_setting_bridge_port_class_init (NMSettingBridgePortClass *setting_class)
 	 * NMSettingBridgePort:priority:
 	 *
 	 * The Spanning Tree Protocol (STP) priority of this bridge port.
+	 *
+	 * Since: 0.9.8
 	 **/
 	g_object_class_install_property
 		(object_class, PROP_PRIORITY,
@@ -252,6 +266,8 @@ nm_setting_bridge_port_class_init (NMSettingBridgePortClass *setting_class)
 	 * NMSettingBridgePort:path-cost:
 	 *
 	 * The Spanning Tree Protocol (STP) port cost for destinations via this port.
+	 *
+	 * Since: 0.9.8
 	 **/
 	 g_object_class_install_property
 		 (object_class, PROP_PATH_COST,
@@ -267,6 +283,8 @@ nm_setting_bridge_port_class_init (NMSettingBridgePortClass *setting_class)
 	 *
 	 * Enables or disabled 'hairpin mode' for the port, which allows frames to
 	 * be sent back out through the port the frame was received on.
+	 *
+	 * Since: 0.9.8
 	 **/
 	 g_object_class_install_property
 		 (object_class, PROP_HAIRPIN_MODE,