aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2012-12-18 05:27:09 +0100
committerMarcel Holtmann <marcel@holtmann.org>2012-12-19 03:47:54 +0100
commitfa598d48d53c71aebc4c281b63dc55a380a0ec4b (patch)
tree2cacc0380a200a4e6c7bbb48df8bf7f5e5680fac
parentaaffd85dbde65eb8e9e723bd6c9f7d30c9b5860d (diff)
downloadpacrunner-fa598d48d53c71aebc4c281b63dc55a380a0ec4b.tar.gz
gdbus: Increase the method call timeout to 5 minutes
-rw-r--r--gdbus/client.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdbus/client.c b/gdbus/client.c
index d7d9e36..4709cdd 100644
--- a/gdbus/client.c
+++ b/gdbus/client.c
@@ -30,6 +30,8 @@
#include "gdbus.h"
+#define METHOD_CALL_TIMEOUT (300 * 1000)
+
struct GDBusClient {
gint ref_count;
DBusConnection *dbus_conn;
@@ -498,7 +500,7 @@ gboolean g_dbus_proxy_method_call(GDBusProxy *proxy, const char *method,
}
if (dbus_connection_send_with_reply(client->dbus_conn, msg,
- &call, -1) == FALSE) {
+ &call, METHOD_CALL_TIMEOUT) == FALSE) {
dbus_message_unref(msg);
g_free(data);
return FALSE;