about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/xmpp/connection.c6
-rw-r--r--src/xmpp/connection.h1
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);