diff options
author | James Booth <boothj5@gmail.com> | 2014-01-26 00:18:15 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-26 00:18:15 +0000 |
commit | 3d7e9232543361e5202f648c5b0209ec30d103c3 (patch) | |
tree | 7df9ca9fbf67de5149b6895a86397e56617e6d93 /src/xmpp | |
parent | 5472c6965afc6b1a8df2c620b0548655c8440ab1 (diff) | |
download | profani-tty-3d7e9232543361e5202f648c5b0209ec30d103c3.tar.gz |
Use generated id on ping iqs
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/stanza.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xmpp/stanza.c b/src/xmpp/stanza.c index 97cebc73..635d12db 100644 --- a/src/xmpp/stanza.c +++ b/src/xmpp/stanza.c @@ -394,7 +394,8 @@ stanza_create_ping_iq(xmpp_ctx_t *ctx) xmpp_stanza_t *iq = xmpp_stanza_new(ctx); xmpp_stanza_set_name(iq, STANZA_NAME_IQ); xmpp_stanza_set_type(iq, STANZA_TYPE_GET); - xmpp_stanza_set_id(iq, "c2s1"); + char *id = generate_unique_id("ping"); + xmpp_stanza_set_id(iq, id); xmpp_stanza_t *ping = xmpp_stanza_new(ctx); xmpp_stanza_set_name(ping, STANZA_NAME_PING); |