mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-17 14:50:33 +01:00
core: implement function nm_active_connection_get_uuid()
Signed-off-by: Thomas Haller <thaller@redhat.com>
This commit is contained in:
parent
950cb2c44f
commit
b69f624c98
1 changed files with 8 additions and 0 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue