diff options
| author | Linus Jahn <lnj@kaidan.im> | 2020-04-06 13:23:44 +0200 |
|---|---|---|
| committer | LNJ <lnj@kaidan.im> | 2020-04-06 14:34:23 +0200 |
| commit | ca6b557101ad860acf08b994851f216567f03e6d (patch) | |
| tree | 16ebfa2452359b1520a649c3b3cc242a9eef71a4 /src/client/QXmppClient.cpp | |
| parent | f26422d143ee2d4cdc166bbbd97e8b9fe60b7fcd (diff) | |
| download | qxmpp-ca6b557101ad860acf08b994851f216567f03e6d.tar.gz | |
QXmppClient: Add new service discovery features
Diffstat (limited to 'src/client/QXmppClient.cpp')
| -rw-r--r-- | src/client/QXmppClient.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/client/QXmppClient.cpp b/src/client/QXmppClient.cpp index 1b3ead73..da285315 100644 --- a/src/client/QXmppClient.cpp +++ b/src/client/QXmppClient.cpp @@ -76,6 +76,8 @@ QStringList QXmppClientPrivate::discoveryFeatures() ns_data, // XEP-0059: Result Set Management ns_rsm, + // XEP-0066: Out of Band Data + ns_oob, // XEP-0071: XHTML-IM ns_xhtml_im, // XEP-0085: Chat State Notifications @@ -86,8 +88,24 @@ QStringList QXmppClientPrivate::discoveryFeatures() ns_ping, // XEP-0224: Attention ns_attention, + // XEP-0249: Direct MUC Invitations + ns_conference, + // XEP-0308: Last Message Correction + ns_message_correct, // XEP-0333: Chat Markers ns_chat_markers, + // XEP-0334: Message Processing Hints + ns_message_processing_hints, + // XEP-0359: Unique and Stable Stanza IDs + ns_sid, + // XEP-0367: Message Attaching + ns_message_attaching, + // XEP-0380: Explicit Message Encryption + ns_eme, + // XEP-0382: Spoiler messages + ns_spoiler, + // XEP-0428: Fallback Indication + ns_fallback_indication, }; } /// \endcond |
