aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-12-22 01:01:13 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-12-22 19:14:15 +0800
commit047a96316d388258fcff299ac4bea1bc3881ecae (patch)
tree1211dcb493eaa2f04ab5ff85a217b935dfb88650 /libempathy
parent2cf8e876c22f6f7af9aa1701061d2624cbc0b5d3 (diff)
downloadgsoc2013-empathy-047a96316d388258fcff299ac4bea1bc3881ecae.tar
gsoc2013-empathy-047a96316d388258fcff299ac4bea1bc3881ecae.tar.gz
gsoc2013-empathy-047a96316d388258fcff299ac4bea1bc3881ecae.tar.bz2
gsoc2013-empathy-047a96316d388258fcff299ac4bea1bc3881ecae.tar.lz
gsoc2013-empathy-047a96316d388258fcff299ac4bea1bc3881ecae.tar.xz
gsoc2013-empathy-047a96316d388258fcff299ac4bea1bc3881ecae.tar.zst
gsoc2013-empathy-047a96316d388258fcff299ac4bea1bc3881ecae.zip
add empathy_account_settings_get_tp_protocol
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-account-settings.c8
-rw-r--r--libempathy/empathy-account-settings.h3
2 files changed, 11 insertions, 0 deletions
diff --git a/libempathy/empathy-account-settings.c b/libempathy/empathy-account-settings.c
index f33e43799..6b8b0177c 100644
--- a/libempathy/empathy-account-settings.c
+++ b/libempathy/empathy-account-settings.c
@@ -1283,3 +1283,11 @@ empathy_account_settings_is_valid (EmpathyAccountSettings *settings)
return !missed;
}
+
+const TpConnectionManagerProtocol *
+empathy_account_settings_get_tp_protocol (EmpathyAccountSettings *self)
+{
+ EmpathyAccountSettingsPriv *priv = GET_PRIV (self);
+
+ return tp_connection_manager_get_protocol (priv->manager, priv->protocol);
+}
diff --git a/libempathy/empathy-account-settings.h b/libempathy/empathy-account-settings.h
index 0ea9b5567..419476b3e 100644
--- a/libempathy/empathy-account-settings.h
+++ b/libempathy/empathy-account-settings.h
@@ -169,6 +169,9 @@ gboolean empathy_account_settings_apply_finish (
gboolean empathy_account_settings_is_valid (EmpathyAccountSettings *settings);
+const TpConnectionManagerProtocol * empathy_account_settings_get_tp_protocol (
+ EmpathyAccountSettings *settings);
+
G_END_DECLS
#endif /* #ifndef __EMPATHY_ACCOUNT_SETTINGS_H__*/