Add XEP-0280 support

This commit is contained in:
Olivier LE MOAL
2015-02-02 11:10:05 +01:00
parent 5b26879e31
commit e3feacddd6
8 changed files with 79 additions and 0 deletions

View File

@@ -152,6 +152,16 @@ iq_room_list_request(gchar *conferencejid)
xmpp_stanza_release(iq);
}
void
iq_enable_carbons()
{
xmpp_conn_t * const conn = connection_get_conn();
xmpp_ctx_t * const ctx = connection_get_ctx();
xmpp_stanza_t *iq = stanza_enable_carbons(ctx);
xmpp_send(conn, iq);
xmpp_stanza_release(iq);
}
void
iq_disco_info_request(gchar *jid)
{