Use stanza module to create groupchat messages

This commit is contained in:
James Booth
2012-11-08 23:44:09 +00:00
parent f90d13bd5e
commit f167fdd55d
2 changed files with 5 additions and 22 deletions

View File

@@ -54,7 +54,7 @@ stanza_create_message(xmpp_ctx_t *ctx, const char * const recipient,
msg = xmpp_stanza_new(ctx);
xmpp_stanza_set_name(msg, "message");
xmpp_stanza_set_type(msg, "chat");
xmpp_stanza_set_type(msg, type);
xmpp_stanza_set_attribute(msg, "to", recipient);
body = xmpp_stanza_new(ctx);