core: implement function nm_active_connection_get_uuid()

Signed-off-by: Thomas Haller <thaller@redhat.com>
This commit is contained in:
Thomas Haller 2014-03-05 21:11:54 +01:00
parent 950cb2c44f
commit b69f624c98

View file

@ -183,6 +183,14 @@ nm_active_connection_get_id (NMActiveConnection *self)
return nm_connection_get_id (NM_ACTIVE_CONNECTION_GET_PRIVATE (self)->connection);
}
const char *
nm_active_connection_get_uuid (NMActiveConnection *self)
{
g_return_val_if_fail (NM_IS_ACTIVE_CONNECTION (self), NULL);
return nm_connection_get_uuid (NM_ACTIVE_CONNECTION_GET_PRIVATE (self)->connection);
}
NMConnection *
nm_active_connection_get_connection (NMActiveConnection *self)
{