qxmpp
qxmpp copied to clipboard
Cross-platform C++ XMPP client and server library
Added possibility to QXmppServer to route a stanza to a specific resource without the need to add the resource to the stanza's JID. Closes #7
XEP-0004, 3.4 Multiple Items in Form Results http://xmpp.org/extensions/xep-0004.html#protocol-results refactor : add Fileld::parse to refactor QXmppDataForm::parse add Fileld::toXml to refactor QXmppDataForm::toXml add Media::parse to refactor QXmppDataForm::parse add Media::toXml to refactor QXmppDataForm::toXml...
I notice that qxmpp workarounds a compiler error reported by clang: https://github.com/qxmpp-project/qxmpp/commit/102493de1743d6b010d0274635da37ea3f434473 This looks like a clang bug. I have reported it to https://github.com/llvm/llvm-project/issues/55889 Please provide more details, so that...
You have done great job for documenting library interfaces. Only few undocumented methods are left: ``` qxmpp-devel-1.4.0+272+g66bcf88f/src/base/QXmppByteStreamIq.h:15: warning: Member Mode (enumeration) of class QXmppByteStreamIq is not documented. qxmpp-devel-1.4.0+272+g66bcf88f/src/base/QXmppByteStreamIq.h:46: warning: Member...
I built qxmpp from master and it does not seem to send ``. It connects, does starttls and sends the challenge response without auth'ing. To verify I installed Kaidan (built...
I'm trying to register to a PEP node. This should be done via filtered notifications (XEP-0115: Entity Capabilities). To achieve this, I created a QXmppClientExtension to handle the PubSub-events for...
I'm joining a room like this: ```c++ auto room = xmpp->getMucManager()->addRoom("[email protected]"); room->setNickName("FooBar"); room->setPassword("fooBar"); room->join(); ``` however it is not joining. The join functions returns false, however is isJoined() returns false...
E.g. error texts and message bodies should be parsed and accessible in all provided languages. --- ```cpp class QXmppMultiString : public QMap { void parse(QDomElement parent, QString elementName, QString xmlns...
it will be a problem when i need the user who send the message from groupchat and QXmppMessage do the delayed delivery like below ## QXmppMessage.cpp ``` c++ // XEP-0203:...