diff --git a/libnm-glib/nm-device-team.c b/libnm-glib/nm-device-team.c index 5af9094c34..0f0eb31e22 100644 --- a/libnm-glib/nm-device-team.c +++ b/libnm-glib/nm-device-team.c @@ -60,6 +60,8 @@ enum { * Registers an error quark for #NMDeviceTeam if necessary. * * Returns: the error quark used for #NMDeviceTeam errors. + * + * Since: 0.9.10 **/ GQuark nm_device_team_error_quark (void) @@ -79,6 +81,8 @@ nm_device_team_error_quark (void) * Creates a new #NMDeviceTeam. * * Returns: (transfer full): a new device + * + * Since: 0.9.10 **/ GObject * nm_device_team_new (DBusGConnection *connection, const char *path) @@ -104,6 +108,8 @@ nm_device_team_new (DBusGConnection *connection, const char *path) * * Returns: the hardware address. This is the internal string used by the * device, and must not be modified. + * + * Since: 0.9.10 **/ const char * nm_device_team_get_hw_address (NMDeviceTeam *device) @@ -121,6 +127,8 @@ nm_device_team_get_hw_address (NMDeviceTeam *device) * Whether the device has carrier. * * Returns: %TRUE if the device has carrier + * + * Since: 0.9.10 **/ gboolean nm_device_team_get_carrier (NMDeviceTeam *device) @@ -140,6 +148,8 @@ nm_device_team_get_carrier (NMDeviceTeam *device) * Returns: (element-type NMClient.Device): the #GPtrArray containing * #NMDevices that are slaves of @device. This is the internal * copy used by the device, and must not be modified. + * + * Since: 0.9.10 **/ const GPtrArray * nm_device_team_get_slaves (NMDeviceTeam *device) diff --git a/libnm-glib/nm-device.c b/libnm-glib/nm-device.c index a8d66052a3..ebb10eeeab 100644 --- a/libnm-glib/nm-device.c +++ b/libnm-glib/nm-device.c @@ -146,6 +146,8 @@ static guint signals[LAST_SIGNAL] = { 0 }; * Registers an error quark for #NMDevice if necessary. * * Returns: the error quark used for #NMDevice errors. + * + * Since: 0.9.10 **/ GQuark nm_device_error_quark (void) diff --git a/libnm-util/nm-connection.c b/libnm-util/nm-connection.c index 52b541120b..213d715fba 100644 --- a/libnm-util/nm-connection.c +++ b/libnm-util/nm-connection.c @@ -1253,6 +1253,8 @@ nm_connection_get_id (NMConnection *connection) * * Returns: (transfer full): the name of @connection's device, * or %NULL if @connection is not a virtual connection type + * + * Since: 0.9.10 */ char * nm_connection_get_virtual_device_description (NMConnection *connection) @@ -1341,6 +1343,8 @@ nm_connection_get_setting_bond (NMConnection *connection) * A shortcut to return any #NMSettingTeam the connection might contain. * * Returns: (transfer none): an #NMSettingTeam if the connection contains one, otherwise %NULL + * + * Since: 0.9.10 **/ NMSettingTeam * nm_connection_get_setting_team (NMConnection *connection) @@ -1357,6 +1361,8 @@ nm_connection_get_setting_team (NMConnection *connection) * A shortcut to return any #NMSettingTeamPort the connection might contain. * * Returns: (transfer none): an #NMSettingTeamPort if the connection contains one, otherwise %NULL + * + * Since: 0.9.10 **/ NMSettingTeamPort * nm_connection_get_setting_team_port (NMConnection *connection) @@ -1421,6 +1427,8 @@ nm_connection_get_setting_connection (NMConnection *connection) * A shortcut to return any #NMSettingDcb the connection might contain. * * Returns: (transfer none): an #NMSettingDcb if the connection contains one, otherwise NULL + * + * Since: 0.9.10 **/ NMSettingDcb * nm_connection_get_setting_dcb (NMConnection *connection) @@ -1437,6 +1445,8 @@ nm_connection_get_setting_dcb (NMConnection *connection) * A shortcut to return any #NMSettingGeneric the connection might contain. * * Returns: (transfer none): an #NMSettingGeneric if the connection contains one, otherwise NULL + * + * Since: 0.9.10 **/ NMSettingGeneric * nm_connection_get_setting_generic (NMConnection *connection) diff --git a/libnm-util/nm-setting-team-port.c b/libnm-util/nm-setting-team-port.c index 4dd297836a..c041927507 100644 --- a/libnm-util/nm-setting-team-port.c +++ b/libnm-util/nm-setting-team-port.c @@ -36,6 +36,8 @@ * * The #NMSettingTeamPort object is a #NMSetting subclass that describes * optional properties that apply to team ports. + * + * Since: 0.9.10 **/ /** @@ -44,6 +46,8 @@ * Registers an error quark for #NMSettingTeamPort if necessary. * * Returns: the error quark used for #NMSettingTeamPort errors. + * + * Since: 0.9.10 **/ GQuark nm_setting_team_port_error_quark (void) @@ -80,6 +84,8 @@ enum { * Creates a new #NMSettingTeamPort object with default values. * * Returns: (transfer full): the new empty #NMSettingTeamPort object + * + * Since: 0.9.10 **/ NMSetting * nm_setting_team_port_new (void) @@ -92,6 +98,8 @@ nm_setting_team_port_new (void) * @setting: the #NMSettingTeamPort * * Returns: the #NMSettingTeamPort:config property of the setting + * + * Since: 0.9.10 **/ const char * nm_setting_team_port_get_config (NMSettingTeamPort *setting) diff --git a/libnm-util/nm-setting-team.c b/libnm-util/nm-setting-team.c index a583b38acf..80885b22da 100644 --- a/libnm-util/nm-setting-team.c +++ b/libnm-util/nm-setting-team.c @@ -37,6 +37,8 @@ * * The #NMSettingTeam object is a #NMSetting subclass that describes properties * necessary for team connections. + * + * Since: 0.9.10 **/ /** @@ -45,6 +47,8 @@ * Registers an error quark for #NMSettingTeam if necessary. * * Returns: the error quark used for #NMSettingTeam errors. + * + * Since: 0.9.10 **/ GQuark nm_setting_team_error_quark (void) @@ -84,6 +88,8 @@ enum { * Creates a new #NMSettingTeam object with default values. * * Returns: (transfer full): the new empty #NMSettingTeam object + * + * Since: 0.9.10 **/ NMSetting * nm_setting_team_new (void) @@ -96,6 +102,8 @@ nm_setting_team_new (void) * @setting: the #NMSettingTeam * * Returns: the #NMSettingTeam:interface-name property of the setting + * + * Since: 0.9.10 **/ const char * nm_setting_team_get_interface_name (NMSettingTeam *setting) @@ -110,6 +118,8 @@ nm_setting_team_get_interface_name (NMSettingTeam *setting) * @setting: the #NMSettingTeam * * Returns: the #NMSettingTeam:config property of the setting + * + * Since: 0.9.10 **/ const char * nm_setting_team_get_config (NMSettingTeam *setting)