aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppClient.cpp
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2020-04-06 13:23:44 +0200
committerLNJ <lnj@kaidan.im>2020-04-06 14:34:23 +0200
commitca6b557101ad860acf08b994851f216567f03e6d (patch)
tree16ebfa2452359b1520a649c3b3cc242a9eef71a4 /src/client/QXmppClient.cpp
parentf26422d143ee2d4cdc166bbbd97e8b9fe60b7fcd (diff)
downloadqxmpp-ca6b557101ad860acf08b994851f216567f03e6d.tar.gz
QXmppClient: Add new service discovery features
Diffstat (limited to 'src/client/QXmppClient.cpp')
-rw-r--r--src/client/QXmppClient.cpp18
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