From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> As the daemon already waits for 60 seconds for the first response this just use the same timeout for calls that don't use transfer but return the response as reply. --- test/map-client | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/map-client b/test/map-client index ac1a8ca..7741c7f 100755 --- a/test/map-client +++ b/test/map-client @@ -109,11 +109,11 @@ class MapClient: print "%s/" % (i["Name"]) def list_messages(self, folder): - ret = self.map.GetMessageListing(folder, dict()) + ret = self.map.GetMessageListing(folder, dict(), timeout=60) print pformat(unwrap(ret)) def get_message(self, handle): - self.map.GetMessageListing("", dict()) + self.map.GetMessageListing("", dict(), timeout=60) path = self.path + "/message" + handle obj = bus.get_object("org.bluez.obex.client", path) msg = dbus.Interface(obj, "org.bluez.obex.Message") -- 1.7.11.4 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html