diff options
author | James Booth <boothj5@gmail.com> | 2014-01-26 14:10:45 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-26 14:10:45 +0000 |
commit | 7184c34d30e38a70479b78056f1a5faa41a1a1f8 (patch) | |
tree | 9cae0d3d9a325aa615265fe53da1c84d5ccd34aa /src/xmpp | |
parent | ae1ccc7baeaff8afac2e72783f94da1fcfc38518 (diff) | |
download | profani-tty-7184c34d30e38a70479b78056f1a5faa41a1a1f8.tar.gz |
Added generated id to invites
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/stanza.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xmpp/stanza.c b/src/xmpp/stanza.c index 5249d51b..969d6131 100644 --- a/src/xmpp/stanza.c +++ b/src/xmpp/stanza.c @@ -226,6 +226,8 @@ stanza_create_invite(xmpp_ctx_t *ctx, const char * const room, message = xmpp_stanza_new(ctx); xmpp_stanza_set_name(message, STANZA_NAME_MESSAGE); xmpp_stanza_set_attribute(message, STANZA_ATTR_TO, contact); + char *id = generate_unique_id(NULL); + xmpp_stanza_set_id(message, id); x = xmpp_stanza_new(ctx); xmpp_stanza_set_name(x, STANZA_NAME_X); |