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>2010-12-03 21:03:28 +0800
commit2b5028d1ec652a136f30d7b3955562a6a07f9f42 (patch)
tree24c8569cd920843ce804e2d8e14c3e101880fe02 /libempathy/empathy-server-sasl-handler.h
parent1994d674ad7b35e8b4a5db7f431c31414d1230f3 (diff)
downloadgsoc2013-empathy-2b5028d1ec652a136f30d7b3955562a6a07f9f42.tar
gsoc2013-empathy-2b5028d1ec652a136f30d7b3955562a6a07f9f42.tar.gz
gsoc2013-empathy-2b5028d1ec652a136f30d7b3955562a6a07f9f42.tar.bz2
gsoc2013-empathy-2b5028d1ec652a136f30d7b3955562a6a07f9f42.tar.lz
gsoc2013-empathy-2b5028d1ec652a136f30d7b3955562a6a07f9f42.tar.xz
gsoc2013-empathy-2b5028d1ec652a136f30d7b3955562a6a07f9f42.tar.zst
gsoc2013-empathy-2b5028d1ec652a136f30d7b3955562a6a07f9f42.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