Empty handlers for closing tags of <bind> and <query> stanzas. We handled those...
authorArt Cancro <ajc@uncensored.citadel.org>
Sat, 3 Jan 2015 16:48:42 +0000 (11:48 -0500)
committerArt Cancro <ajc@uncensored.citadel.org>
Sat, 3 Jan 2015 16:48:42 +0000 (11:48 -0500)
citadel/modules/xmpp/serv_xmpp.c

index 7d8fbc67d02c3349ec864d3d56e916563962fc50..e990ae3547d4841ddc9aa672811af0fb0d0ae11f 100644 (file)
@@ -481,6 +481,14 @@ void xmpp_xml_end(void *data, const char *supplied_el) {
                CC->kill_me = KILLME_CLIENT_LOGGED_OUT;
        }
 
+       else if (!strcasecmp(el, "query")) {
+               /* already processed , no further action needed here */
+       }
+
+       else if (!strcasecmp(el, "bind")) {
+               /* already processed , no further action needed here */
+       }
+
        else {
                XMPP_syslog(LOG_DEBUG, "Ignoring unknown tag <%s>\n", el);
        }