]> git.0d.be Git - empathy.git/commitdiff
account-settings: add _supports_sasl function
authorJonny Lamb <jonnylamb@gnome.org>
Fri, 10 Dec 2010 12:23:08 +0000 (12:23 +0000)
committerJonny Lamb <jonnylamb@gnome.org>
Fri, 10 Dec 2010 12:23:08 +0000 (12:23 +0000)
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
libempathy/empathy-account-settings.c
libempathy/empathy-account-settings.h

index 75538e26ef89aec1827134f76ae13b4058c82ea7..c1452ac68d6a86b3d65e06a14d89d35cf6dad412 100644 (file)
@@ -1672,3 +1672,11 @@ empathy_account_settings_get_tp_protocol (EmpathyAccountSettings *self)
 
   return tp_connection_manager_get_protocol (priv->manager, priv->protocol);
 }
+
+gboolean
+empathy_account_settings_supports_sasl (EmpathyAccountSettings *self)
+{
+  EmpathyAccountSettingsPriv *priv = GET_PRIV (self);
+
+  return priv->supports_sasl;
+}
index 8f3634a195a396f1074ea53e4be733020b08b599..4d5f6ddc9f6cd3f680829672ad76f07d224eacc4 100644 (file)
@@ -189,6 +189,8 @@ gboolean empathy_account_settings_is_valid (EmpathyAccountSettings *settings);
 const TpConnectionManagerProtocol * empathy_account_settings_get_tp_protocol (
     EmpathyAccountSettings *settings);
 
+gboolean empathy_account_settings_supports_sasl (EmpathyAccountSettings *self);
+
 G_END_DECLS
 
 #endif /* #ifndef __EMPATHY_ACCOUNT_SETTINGS_H__*/