diff options
author | Jonathan Tellier <jonathan.tellier@gmail.com> | 2009-08-26 03:57:41 +0800 |
---|---|---|
committer | jtellier <jonathan.tellier@collabora.co.uk> | 2009-08-26 21:01:29 +0800 |
commit | 8dba3957946252b622ba9c09e209f007d5961199 (patch) | |
tree | 09e75533af140bedae28e784316f1dfc4ce2c3b1 /libempathy/empathy-account.c | |
parent | df5323f845906bf4cdb85fc430f5412d5956b4c7 (diff) | |
download | gsoc2013-empathy-8dba3957946252b622ba9c09e209f007d5961199.tar gsoc2013-empathy-8dba3957946252b622ba9c09e209f007d5961199.tar.gz gsoc2013-empathy-8dba3957946252b622ba9c09e209f007d5961199.tar.bz2 gsoc2013-empathy-8dba3957946252b622ba9c09e209f007d5961199.tar.lz gsoc2013-empathy-8dba3957946252b622ba9c09e209f007d5961199.tar.xz gsoc2013-empathy-8dba3957946252b622ba9c09e209f007d5961199.tar.zst gsoc2013-empathy-8dba3957946252b622ba9c09e209f007d5961199.zip |
- Added a utility function (empathy_account_reconnect_async) to easily
reconnect an account.
- When we apply changes to an account, instead of disconnecting and
reconnecting it, we use the new empathy_account_reconnect_async
function.
Diffstat (limited to 'libempathy/empathy-account.c')
-rw-r--r-- | libempathy/empathy-account.c | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/libempathy/empathy-account.c b/libempathy/empathy-account.c index 7733f3556..b508f3952 100644 --- a/libempathy/empathy-account.c +++ b/libempathy/empathy-account.c @@ -978,6 +978,49 @@ empathy_account_set_enabled_async (EmpathyAccount *account, } static void +account_reconnected_cb (TpAccount *proxy, + const GError *error, + gpointer user_data, + GObject *weak_object) +{ + GSimpleAsyncResult *result = user_data; + + if (error != NULL) + g_simple_async_result_set_from_error (result, (GError *) error); + + g_simple_async_result_complete (result); + g_object_unref (result); +} + +gboolean +empathy_account_reconnect_finish (EmpathyAccount *account, + GAsyncResult *result, + GError **error) +{ + if (g_simple_async_result_propagate_error (G_SIMPLE_ASYNC_RESULT (result), + error) || + !g_simple_async_result_is_valid (result, G_OBJECT (account), + empathy_account_reconnect_finish)) + return FALSE; + + return TRUE; +} + +void +empathy_account_reconnect_async (EmpathyAccount *account, + GAsyncReadyCallback callback, + gpointer user_data) +{ + EmpathyAccountPriv *priv = GET_PRIV (account); + + GSimpleAsyncResult *result = g_simple_async_result_new (G_OBJECT (account), + callback, user_data, empathy_account_reconnect_finish); + + tp_cli_account_call_reconnect (priv->account, + -1, account_reconnected_cb, result, NULL, G_OBJECT (account)); +} + +static void empathy_account_requested_presence_cb (TpProxy *proxy, const GError *error, gpointer user_data, |