[empathy] dispatcher_connection_invalidated_cb: terminate pending requests
- From: Guillaume Desmottes <gdesmott src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy] dispatcher_connection_invalidated_cb: terminate pending requests
- Date: Mon, 19 Apr 2010 13:33:01 +0000 (UTC)
commit e35291afaace4f378dd34377cd976003735af47c
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date: Mon Apr 19 15:11:59 2010 +0200
dispatcher_connection_invalidated_cb: terminate pending requests
libempathy/empathy-dispatcher.c | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
---
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c
index d0dbc63..8d91928 100644
--- a/libempathy/empathy-dispatcher.c
+++ b/libempathy/empathy-dispatcher.c
@@ -335,8 +335,31 @@ dispatcher_connection_invalidated_cb (TpConnection *connection,
EmpathyDispatcher *self)
{
EmpathyDispatcherPriv *priv = GET_PRIV (self);
+ ConnectionData *connection_data;
DEBUG ("Error: %s", message);
+
+ /* Terminate pending requests, if any */
+ connection_data = g_hash_table_lookup (priv->connections, connection);
+ if (connection_data != NULL)
+ {
+ GList *l;
+ GError *error;
+
+ error = g_error_new_literal (domain, code, message);
+
+ for (l = connection_data->outstanding_requests; l != NULL;
+ l = g_list_next (l))
+ {
+ DispatcherRequestData *request_data = l->data;
+
+ if (request_data->cb != NULL)
+ request_data->cb (NULL, error, request_data->user_data);
+ }
+
+ g_error_free (error);
+ }
+
g_hash_table_remove (priv->connections, connection);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]