diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2008-04-13 19:34:31 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2008-04-13 19:34:31 +0000 |
| commit | 88a0bc1c0ce39ab88c0956c0bed3849e3a10c98b (patch) | |
| tree | 0e2cef540445ba149efd934ad6da3027a3f343bf /src | |
| parent | remove split_at_discontinuities from LPE code, because it has been moved to 2... (diff) | |
| download | inkscape-88a0bc1c0ce39ab88c0956c0bed3849e3a10c98b.tar.gz inkscape-88a0bc1c0ce39ab88c0956c0bed3849e3a10c98b.zip | |
more debug output messages
(bzr r5420)
Diffstat (limited to 'src')
| -rw-r--r-- | src/pedro/pedroxmpp.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/pedro/pedroxmpp.cpp b/src/pedro/pedroxmpp.cpp index 0fa86a6c4..23bfbad6f 100644 --- a/src/pedro/pedroxmpp.cpp +++ b/src/pedro/pedroxmpp.cpp @@ -1474,6 +1474,8 @@ bool XmppClient::inBandRegistrationCancel() //# A U T H E N T I C A T E //######################################################################## + + bool XmppClient::iqAuthenticate(const DOMString &streamId) { Parser parser; @@ -1486,7 +1488,7 @@ bool XmppClient::iqAuthenticate(const DOMString &streamId) return false; DOMString recbuf = readStanza(); - //printf("iq received: '%s'\n", recbuf.c_str()); + status("iq auth recv: '%s'\n", recbuf.c_str()); Element *elem = parser.parse(recbuf); //elem->print(); DOMString iqType = elem->getTagAttribute("iq", "type"); @@ -1537,7 +1539,7 @@ bool XmppClient::iqAuthenticate(const DOMString &streamId) } recbuf = readStanza(); - //printf("iq received: '%s'\n", recbuf.c_str()); + status("iq auth recv: '%s'\n", recbuf.c_str()); elem = parser.parse(recbuf); //elem->print(); iqType = elem->getTagAttribute("iq", "type"); |
