Moved roster iq creation to stanza

This commit is contained in:
James Booth
2012-11-10 00:25:42 +00:00
parent 244358afb0
commit 0da40a34d5
3 changed files with 22 additions and 14 deletions

View File

@@ -81,7 +81,9 @@ xmpp_stanza_t* stanza_create_room_join_presence(xmpp_ctx_t *ctx,
xmpp_stanza_t* stanza_create_room_leave_presence(xmpp_ctx_t *ctx,
const char * const room, const char * const nick);
xmpp_stanza_t * stanza_create_presence(xmpp_ctx_t *ctx, const char * const show,
xmpp_stanza_t* stanza_create_presence(xmpp_ctx_t *ctx, const char * const show,
const char * const status);
xmpp_stanza_t* stanza_create_roster_iq(xmpp_ctx_t *ctx);
#endif