summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2020-01-20 18:39:48 +0100
committerThomas Haller <thaller@redhat.com>2020-02-10 19:11:50 +0100
commitc5f58619c74b8f752f808a82b84045137003db3e (patch)
tree2c71c3317d7a895f706fe6f4753865fe92e14ff0
parent3228fcbe9a48121032634272bc63f83793047baf (diff)
supplicant: remove unused nm_supplicant_interface_credentials_reply()
Also, it is a synchronous D-Bus call. Get rid of the unused function.
-rw-r--r--src/supplicant/nm-supplicant-interface.c34
-rw-r--r--src/supplicant/nm-supplicant-interface.h7
2 files changed, 0 insertions, 41 deletions
diff --git a/src/supplicant/nm-supplicant-interface.c b/src/supplicant/nm-supplicant-interface.c
index ca3b09e175..5ba9a8e73b 100644
--- a/src/supplicant/nm-supplicant-interface.c
+++ b/src/supplicant/nm-supplicant-interface.c
@@ -630,40 +630,6 @@ iface_check_ready (NMSupplicantInterface *self)
}
}
-gboolean
-nm_supplicant_interface_credentials_reply (NMSupplicantInterface *self,
- const char *field,
- const char *value,
- GError **error)
-{
- NMSupplicantInterfacePrivate *priv;
- gs_unref_variant GVariant *reply = NULL;
-
- g_return_val_if_fail (NM_IS_SUPPLICANT_INTERFACE (self), FALSE);
- g_return_val_if_fail (field != NULL, FALSE);
- g_return_val_if_fail (value != NULL, FALSE);
-
- priv = NM_SUPPLICANT_INTERFACE_GET_PRIVATE (self);
- g_return_val_if_fail (priv->has_credreq == TRUE, FALSE);
-
- /* Need a network block object path */
- g_return_val_if_fail (priv->net_path, FALSE);
- reply = g_dbus_proxy_call_sync (priv->iface_proxy,
- "NetworkReply",
- g_variant_new ("(oss)",
- priv->net_path,
- field,
- value),
- G_DBUS_CALL_FLAGS_NONE,
- 5000,
- NULL,
- error);
- if (error && *error)
- g_dbus_error_strip_remote_error (*error);
-
- return !!reply;
-}
-
static void
iface_check_netreply_cb (GDBusProxy *proxy, GAsyncResult *result, gpointer user_data)
{
diff --git a/src/supplicant/nm-supplicant-interface.h b/src/supplicant/nm-supplicant-interface.h
index 8056b0d9df..31d6d535f9 100644
--- a/src/supplicant/nm-supplicant-interface.h
+++ b/src/supplicant/nm-supplicant-interface.h
@@ -136,19 +136,12 @@ const char *nm_supplicant_interface_get_ifname (NMSupplicantInterface *self);
guint nm_supplicant_interface_get_max_scan_ssids (NMSupplicantInterface *self);
-gboolean nm_supplicant_interface_get_has_credentials_request (NMSupplicantInterface *self);
-
gboolean nm_supplicant_interface_get_p2p_group_joined (NMSupplicantInterface *self);
const char* nm_supplicant_interface_get_p2p_group_path (NMSupplicantInterface *self);
gboolean nm_supplicant_interface_get_p2p_group_owner (NMSupplicantInterface *self);
-gboolean nm_supplicant_interface_credentials_reply (NMSupplicantInterface *self,
- const char *field,
- const char *value,
- GError **error);
-
void nm_supplicant_interface_p2p_start_find (NMSupplicantInterface *self,
guint timeout);
void nm_supplicant_interface_p2p_stop_find (NMSupplicantInterface *self);