diff options
author | James Booth <boothj5@gmail.com> | 2014-01-26 00:53:24 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-26 00:53:24 +0000 |
commit | 16de26790678e55c10cc2ae79ac9a15234fe734e (patch) | |
tree | 2278c4abf75074c63b06d87f37df1fa53a665f06 /src/xmpp | |
parent | 3d7e9232543361e5202f648c5b0209ec30d103c3 (diff) | |
download | profani-tty-16de26790678e55c10cc2ae79ac9a15234fe734e.tar.gz |
Added id handler for pings, disable ping on error type 'cancel'
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/iq.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c index 13650398..3766d2c4 100644 --- a/src/xmpp/iq.c +++ b/src/xmpp/iq.c @@ -162,6 +162,37 @@ _error_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, } static int +_pong_handler(xmpp_conn_t *const conn, xmpp_stanza_t * const stanza, + void * const userdata) +{ + char *id = xmpp_stanza_get_id(stanza); + char *type = xmpp_stanza_get_type(stanza); + + if (id != NULL && type != NULL) { + // show warning if error + if (strcmp(type, STANZA_TYPE_ERROR) == 0) { + log_warning("Server ping (id=%s) responded with error", id); + + // turn off autoping if error type is 'cancel' + xmpp_stanza_t *error = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_ERROR); + if (error != NULL) { + char *errtype = xmpp_stanza_get_type(error); + if (errtype != NULL) { + if (strcmp(errtype, "cancel") == 0) { + log_warning("Server ping (id=%s) error type 'cancel', disabling autoping.", id); + handle_autoping_cancel(); + xmpp_timed_handler_delete(conn, _ping_timed_handler); + } + } + } + } + } + + // remove this handler + return 0; +} + +static int _ping_timed_handler(xmpp_conn_t * const conn, void * const userdata) { xmpp_ctx_t *ctx = (xmpp_ctx_t *)userdata; @@ -169,6 +200,11 @@ _ping_timed_handler(xmpp_conn_t * const conn, void * const userdata) if (jabber_get_connection_status() == JABBER_CONNECTED) { xmpp_stanza_t *iq = stanza_create_ping_iq(ctx); + char *id = xmpp_stanza_get_id(iq); + + // add pong handler + xmpp_id_handler_add(conn, _pong_handler, id, ctx); + xmpp_send(conn, iq); xmpp_stanza_release(iq); } |