Home | History | Annotate | Download | only in xmpp

Lines Matching refs:stanza

42   virtual bool HandleStanza(const XmlElement * stanza) {
43 if (!MatchResponseIq(stanza, Jid(), task_id()))
46 if (stanza->Attr(QN_TYPE) != STR_RESULT)
49 // Queue the stanza with the parent so these don't get handled out of order
51 parent->QueueStanza(stanza);
69 JingleInfoTask::HandleStanza(const XmlElement * stanza) {
70 if (!MatchRequestIq(stanza, "set", QN_JINGLE_INFO_QUERY))
74 Jid from(stanza->Attr(QN_FROM));
80 QueueStanza(stanza);
89 const XmlElement * stanza = NextStanza();
90 if (stanza == NULL)
92 const XmlElement * query = stanza->FirstNamed(QN_JINGLE_INFO_QUERY);