gdbus: Increase the method call timeout to 5 minutes

This commit is contained in:
Marcel Holtmann 2012-12-18 05:27:09 +01:00
parent e7ca33f908
commit fcab2080be
1 changed files with 3 additions and 1 deletions

View File

@ -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;