mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-09 07:08:02 +02: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);
|
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 *
|
NMConnection *
|
||||||
nm_active_connection_get_connection (NMActiveConnection *self)
|
nm_active_connection_get_connection (NMActiveConnection *self)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue