Empty handlers for closing tags of <bind> and <query> stanzas. We handled those...
[citadel.git] / 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;
        }
 
                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);
        }
        else {
                XMPP_syslog(LOG_DEBUG, "Ignoring unknown tag <%s>\n", el);
        }