aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-server-sasl-handler.h
diff options
context:
space:
mode:
authorJonny Lamb <jonnylamb@gnome.org>2010-12-03 21:03:28 +0800
committerJonny Lamb <jonnylamb@gnome.org>2011-01-26 21:28:40 +0800
commitbde7600cd918d7654667f0543b2fc904b8a79680 (patch)
tree0752f29ae08b1baddda2bb91a2163dcae990fbf0 /libempathy/empathy-server-sasl-handler.h
parent0b8d4b2aa09ea0a1e4829ced9a0ba626202bc069 (diff)
downloadgsoc2013-empathy-bde7600cd918d7654667f0543b2fc904b8a79680.tar
gsoc2013-empathy-bde7600cd918d7654667f0543b2fc904b8a79680.tar.gz
gsoc2013-empathy-bde7600cd918d7654667f0543b2fc904b8a79680.tar.bz2
gsoc2013-empathy-bde7600cd918d7654667f0543b2fc904b8a79680.tar.lz
gsoc2013-empathy-bde7600cd918d7654667f0543b2fc904b8a79680.tar.xz
gsoc2013-empathy-bde7600cd918d7654667f0543b2fc904b8a79680.tar.zst
gsoc2013-empathy-bde7600cd918d7654667f0543b2fc904b8a79680.zip
server-sasl-handler: add an account property
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'libempathy/empathy-server-sasl-handler.h')
-rw-r--r--libempathy/empathy-server-sasl-handler.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/libempathy/empathy-server-sasl-handler.h b/libempathy/empathy-server-sasl-handler.h
index 71f8d2a78..47f49e2a4 100644
--- a/libempathy/empathy-server-sasl-handler.h
+++ b/libempathy/empathy-server-sasl-handler.h
@@ -23,6 +23,7 @@
#include <glib-object.h>
#include <gio/gio.h>
+#include <telepathy-glib/account.h>
#include <telepathy-glib/channel.h>
G_BEGIN_DECLS
@@ -58,13 +59,15 @@ GType empathy_server_sasl_handler_get_type (void);
EmpathyServerSASLHandlerClass))
EmpathyServerSASLHandler * empathy_server_sasl_handler_new (
- TpChannel *channel);
+ TpAccount *account, TpChannel *channel);
void empathy_server_sasl_handler_provide_password (
EmpathyServerSASLHandler *handler, const gchar *password);
void empathy_server_sasl_handler_cancel (EmpathyServerSASLHandler *handler);
+TpAccount * empathy_server_sasl_handler_get_account (
+ EmpathyServerSASLHandler *handler);
G_END_DECLS