From 10ae7d8cd706062742d0cdb1803d49909aef9e06 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Mon, 29 Jun 2020 22:15:58 +0200 Subject: New upstream version 1.25.91 --- libnm/nm-client.c | 2 +- libnm/nm-device-6lowpan.c | 2 +- libnm/nm-device-bond.c | 2 +- libnm/nm-device-bridge.c | 2 +- libnm/nm-device-bt.c | 2 +- libnm/nm-device-dummy.c | 2 +- libnm/nm-device-ethernet.c | 2 +- libnm/nm-device-generic.c | 2 +- libnm/nm-device-infiniband.c | 2 +- libnm/nm-device-macsec.c | 2 +- libnm/nm-device-macvlan.c | 2 +- libnm/nm-device-olpc-mesh.c | 2 +- libnm/nm-device-team.c | 2 +- libnm/nm-device-tun.c | 2 +- libnm/nm-device-vlan.c | 2 +- libnm/nm-device-vxlan.c | 2 +- libnm/nm-device-wifi-p2p.c | 2 +- libnm/nm-device-wifi.c | 2 +- libnm/nm-device-wpan.c | 2 +- libnm/nm-settings-docs-gir.xml | 270 ++++++++++++++++++++--------------------- 20 files changed, 154 insertions(+), 154 deletions(-) (limited to 'libnm') diff --git a/libnm/nm-client.c b/libnm/nm-client.c index 604a510d..d7f61152 100644 --- a/libnm/nm-client.c +++ b/libnm/nm-client.c @@ -4576,7 +4576,7 @@ nm_client_check_connectivity_finish (NMClient *client, guint32 connectivity; g_return_val_if_fail (NM_IS_CLIENT (client), NM_CONNECTIVITY_UNKNOWN); - g_return_val_if_fail (nm_g_task_is_valid (client, result, nm_client_check_connectivity_async), NM_CONNECTIVITY_UNKNOWN); + g_return_val_if_fail (nm_g_task_is_valid (result, client, nm_client_check_connectivity_async), NM_CONNECTIVITY_UNKNOWN); ret = g_task_propagate_pointer (G_TASK (result), error); if (!ret) diff --git a/libnm/nm-device-6lowpan.c b/libnm/nm-device-6lowpan.c index 0b428c2d..b4f37849 100644 --- a/libnm/nm-device-6lowpan.c +++ b/libnm/nm-device-6lowpan.c @@ -51,7 +51,7 @@ nm_device_6lowpan_get_parent (NMDevice6Lowpan *device) } /** - * nm_device_6lowpan_get_hw_address: + * nm_device_6lowpan_get_hw_address: (skip) * @device: a #NMDevice6Lowpan * * Gets the hardware (MAC) address of the #NMDevice6Lowpan diff --git a/libnm/nm-device-bond.c b/libnm/nm-device-bond.c index cb236af9..ebc438a9 100644 --- a/libnm/nm-device-bond.c +++ b/libnm/nm-device-bond.c @@ -42,7 +42,7 @@ G_DEFINE_TYPE (NMDeviceBond, nm_device_bond, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_bond_get_hw_address: + * nm_device_bond_get_hw_address: (skip) * @device: a #NMDeviceBond * * Gets the hardware (MAC) address of the #NMDeviceBond diff --git a/libnm/nm-device-bridge.c b/libnm/nm-device-bridge.c index 977db146..9552c2df 100644 --- a/libnm/nm-device-bridge.c +++ b/libnm/nm-device-bridge.c @@ -41,7 +41,7 @@ G_DEFINE_TYPE (NMDeviceBridge, nm_device_bridge, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_bridge_get_hw_address: + * nm_device_bridge_get_hw_address: (skip) * @device: a #NMDeviceBridge * * Gets the hardware (MAC) address of the #NMDeviceBridge diff --git a/libnm/nm-device-bt.c b/libnm/nm-device-bt.c index 8df95265..e8dc02ff 100644 --- a/libnm/nm-device-bt.c +++ b/libnm/nm-device-bt.c @@ -42,7 +42,7 @@ G_DEFINE_TYPE (NMDeviceBt, nm_device_bt, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_bt_get_hw_address: + * nm_device_bt_get_hw_address: (skip) * @device: a #NMDeviceBt * * Gets the hardware (MAC) address of the #NMDeviceBt diff --git a/libnm/nm-device-dummy.c b/libnm/nm-device-dummy.c index 3bf8e09f..4b62fbf0 100644 --- a/libnm/nm-device-dummy.c +++ b/libnm/nm-device-dummy.c @@ -28,7 +28,7 @@ G_DEFINE_TYPE (NMDeviceDummy, nm_device_dummy, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_dummy_get_hw_address: + * nm_device_dummy_get_hw_address: (skip) * @device: a #NMDeviceDummy * * Gets the hardware (MAC) address of the #NMDeviceDummy diff --git a/libnm/nm-device-ethernet.c b/libnm/nm-device-ethernet.c index 944f7b81..7152784a 100644 --- a/libnm/nm-device-ethernet.c +++ b/libnm/nm-device-ethernet.c @@ -46,7 +46,7 @@ G_DEFINE_TYPE (NMDeviceEthernet, nm_device_ethernet, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_ethernet_get_hw_address: + * nm_device_ethernet_get_hw_address: (skip) * @device: a #NMDeviceEthernet * * Gets the active hardware (MAC) address of the #NMDeviceEthernet diff --git a/libnm/nm-device-generic.c b/libnm/nm-device-generic.c index 3751cb51..2b9c96a8 100644 --- a/libnm/nm-device-generic.c +++ b/libnm/nm-device-generic.c @@ -37,7 +37,7 @@ G_DEFINE_TYPE (NMDeviceGeneric, nm_device_generic, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_generic_get_hw_address: + * nm_device_generic_get_hw_address: (skip) * @device: a #NMDeviceGeneric * * Gets the hardware address of the #NMDeviceGeneric diff --git a/libnm/nm-device-infiniband.c b/libnm/nm-device-infiniband.c index ad47c2ed..194bb199 100644 --- a/libnm/nm-device-infiniband.c +++ b/libnm/nm-device-infiniband.c @@ -38,7 +38,7 @@ G_DEFINE_TYPE (NMDeviceInfiniband, nm_device_infiniband, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_infiniband_get_hw_address: + * nm_device_infiniband_get_hw_address: (skip) * @device: a #NMDeviceInfiniband * * Gets the hardware (MAC) address of the #NMDeviceInfiniband diff --git a/libnm/nm-device-macsec.c b/libnm/nm-device-macsec.c index d8352f9c..1396cb66 100644 --- a/libnm/nm-device-macsec.c +++ b/libnm/nm-device-macsec.c @@ -77,7 +77,7 @@ nm_device_macsec_get_parent (NMDeviceMacsec *device) } /** - * nm_device_macsec_get_hw_address: + * nm_device_macsec_get_hw_address: (skip) * @device: a #NMDeviceMacsec * * Gets the hardware (MAC) address of the #NMDeviceMacsec diff --git a/libnm/nm-device-macvlan.c b/libnm/nm-device-macvlan.c index 83dc0e25..3b3ce115 100644 --- a/libnm/nm-device-macvlan.c +++ b/libnm/nm-device-macvlan.c @@ -116,7 +116,7 @@ nm_device_macvlan_get_tap (NMDeviceMacvlan *device) } /** - * nm_device_macvlan_get_hw_address: + * nm_device_macvlan_get_hw_address: (skip) * @device: a #NMDeviceMacvlan * * Gets the hardware (MAC) address of the #NMDeviceMacvlan diff --git a/libnm/nm-device-olpc-mesh.c b/libnm/nm-device-olpc-mesh.c index d6fa03f1..ebdce2a8 100644 --- a/libnm/nm-device-olpc-mesh.c +++ b/libnm/nm-device-olpc-mesh.c @@ -40,7 +40,7 @@ G_DEFINE_TYPE (NMDeviceOlpcMesh, nm_device_olpc_mesh, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_olpc_mesh_get_hw_address: + * nm_device_olpc_mesh_get_hw_address: (skip) * @device: a #NMDeviceOlpcMesh * * Gets the hardware (MAC) address of the #NMDeviceOlpcMesh diff --git a/libnm/nm-device-team.c b/libnm/nm-device-team.c index 5e97a7df..08588665 100644 --- a/libnm/nm-device-team.c +++ b/libnm/nm-device-team.c @@ -43,7 +43,7 @@ G_DEFINE_TYPE (NMDeviceTeam, nm_device_team, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_team_get_hw_address: + * nm_device_team_get_hw_address: (skip) * @device: a #NMDeviceTeam * * Gets the hardware (MAC) address of the #NMDeviceTeam diff --git a/libnm/nm-device-tun.c b/libnm/nm-device-tun.c index 26e4a318..e7ea07fa 100644 --- a/libnm/nm-device-tun.c +++ b/libnm/nm-device-tun.c @@ -50,7 +50,7 @@ G_DEFINE_TYPE (NMDeviceTun, nm_device_tun, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_tun_get_hw_address: + * nm_device_tun_get_hw_address: (skip) * @device: a #NMDeviceTun * * Gets the hardware (MAC) address of the #NMDeviceTun diff --git a/libnm/nm-device-vlan.c b/libnm/nm-device-vlan.c index fdc21936..5debf789 100644 --- a/libnm/nm-device-vlan.c +++ b/libnm/nm-device-vlan.c @@ -43,7 +43,7 @@ G_DEFINE_TYPE (NMDeviceVlan, nm_device_vlan, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_vlan_get_hw_address: + * nm_device_vlan_get_hw_address: (skip) * @device: a #NMDeviceVlan * * Gets the hardware (MAC) address of the #NMDeviceVlan diff --git a/libnm/nm-device-vxlan.c b/libnm/nm-device-vxlan.c index c048a980..9c8e4fc9 100644 --- a/libnm/nm-device-vxlan.c +++ b/libnm/nm-device-vxlan.c @@ -69,7 +69,7 @@ G_DEFINE_TYPE (NMDeviceVxlan, nm_device_vxlan, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_vxlan_get_hw_address: + * nm_device_vxlan_get_hw_address: (skip) * @device: a #NMDeviceVxlan * * Gets the hardware (MAC) address of the #NMDeviceVxlan diff --git a/libnm/nm-device-wifi-p2p.c b/libnm/nm-device-wifi-p2p.c index 972983d1..9927ee87 100644 --- a/libnm/nm-device-wifi-p2p.c +++ b/libnm/nm-device-wifi-p2p.c @@ -51,7 +51,7 @@ G_DEFINE_TYPE (NMDeviceWifiP2P, nm_device_wifi_p2p, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_wifi_p2p_get_hw_address: + * nm_device_wifi_p2p_get_hw_address: (skip) * @device: a #NMDeviceWifiP2P * * Gets the actual hardware (MAC) address of the #NMDeviceWifiP2P diff --git a/libnm/nm-device-wifi.c b/libnm/nm-device-wifi.c index 5c12b676..5d7feca3 100644 --- a/libnm/nm-device-wifi.c +++ b/libnm/nm-device-wifi.c @@ -65,7 +65,7 @@ G_DEFINE_TYPE (NMDeviceWifi, nm_device_wifi, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_wifi_get_hw_address: + * nm_device_wifi_get_hw_address: (skip) * @device: a #NMDeviceWifi * * Gets the actual hardware (MAC) address of the #NMDeviceWifi diff --git a/libnm/nm-device-wpan.c b/libnm/nm-device-wpan.c index 9cbf4ae0..8a52e031 100644 --- a/libnm/nm-device-wpan.c +++ b/libnm/nm-device-wpan.c @@ -25,7 +25,7 @@ G_DEFINE_TYPE (NMDeviceWpan, nm_device_wpan, NM_TYPE_DEVICE) /*****************************************************************************/ /** - * nm_device_wpan_get_hw_address: + * nm_device_wpan_get_hw_address: (skip) * @device: a #NMDeviceWpan * * Gets the active hardware (MAC) address of the #NMDeviceWpan diff --git a/libnm/nm-settings-docs-gir.xml b/libnm/nm-settings-docs-gir.xml index 521c45fc..56ae4251 100644 --- a/libnm/nm-settings-docs-gir.xml +++ b/libnm/nm-settings-docs-gir.xml @@ -5,30 +5,30 @@ - + - + - + - + - + - + - + - - + + - + @@ -38,62 +38,62 @@ - - - + + + - - - - - + + + + + - - - - - - - - + + + + + + + + - - + + - - - + + + - - - - + + + + - - + + - + - - + + - + - + - - + + - + @@ -104,11 +104,11 @@ - + - - + + @@ -119,7 +119,7 @@ - + @@ -128,7 +128,7 @@ - + @@ -137,17 +137,17 @@ - + - - + + - + - + @@ -172,39 +172,39 @@ - + - - - + + + - - - + + + - - + + - - + + - + - - + + - + @@ -215,21 +215,21 @@ - + - - + + - + - - + + - + @@ -255,25 +255,25 @@ - + - + - + - - - - + + + + @@ -281,8 +281,8 @@ - - + + @@ -291,23 +291,23 @@ - + - + - + - + - + @@ -315,19 +315,19 @@ - + - + - + - + @@ -339,10 +339,10 @@ - + - + @@ -360,7 +360,7 @@ - + @@ -392,11 +392,11 @@ - + - - + + @@ -437,76 +437,76 @@ - - - - + + + + - - - - - + + + + + - + - + - - - + + + - + - + - + - + - - - - - - + + + + + + - + - - + + - - - - - + + + + + - + - + -- cgit 1.3.0-6-gf8a5