diff options
author | James Booth <boothj5@gmail.com> | 2016-05-08 02:37:02 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-05-08 02:37:02 +0100 |
commit | 29380a39cdea36615aa97b5a8d79b42f9535aaee (patch) | |
tree | 3fe8cc158527d72419ff566859fcef53fc9f2229 /src/xmpp | |
parent | 188df60cfe18bc14be7e7774a34cc3a272db82a3 (diff) | |
download | profani-tty-29380a39cdea36615aa97b5a8d79b42f9535aaee.tar.gz |
Remove connection_get_disco_infos()
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/connection.c | 6 | ||||
-rw-r--r-- | src/xmpp/connection.h | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c index 102e7217..a9f77a23 100644 --- a/src/xmpp/connection.c +++ b/src/xmpp/connection.c @@ -203,12 +203,6 @@ connection_get_fulljid(void) return xmpp_conn_get_jid(conn.xmpp_conn); } -GSList* -connection_get_disco_infos(void) -{ - return conn.disco_infos; -} - DiscoInfo* connection_get_disco_info(const char *const jid) { diff --git a/src/xmpp/connection.h b/src/xmpp/connection.h index c2002e0f..1c5a2a4f 100644 --- a/src/xmpp/connection.h +++ b/src/xmpp/connection.h @@ -57,7 +57,6 @@ void connection_free_log(void); xmpp_conn_t* connection_get_conn(void); xmpp_ctx_t* connection_get_ctx(void); char *connection_get_domain(void); -GSList* connection_get_disco_infos(void); char* connection_jid_for_feature(const char *const feature); DiscoInfo* connection_get_disco_info(const char *const jid); |