qa: Resolve Qt deprecation warnings - use sslHandshakeErrors
[quassel.git] / src / common / irccap.h
index 0bcb66d..3d1e793 100644 (file)
@@ -79,6 +79,13 @@ namespace IrcCap {
      */
     const QString CHGHOST = "chghost";
 
+    /**
+     * Server sending own messages back.
+     *
+     * https://ircv3.net/specs/extensions/echo-message-3.2.html
+     */
+    const QString ECHO_MESSAGE = "echo-message";
+
     /**
      * Extended join information.
      *
@@ -86,6 +93,13 @@ namespace IrcCap {
      */
     const QString EXTENDED_JOIN = "extended-join";
 
+    /**
+     * Standardized invite notifications.
+     *
+     * https://ircv3.net/specs/extensions/invite-notify-3.2
+     */
+    const QString INVITE_NOTIFY = "invite-notify";
+
     /**
      * Additional metadata on a per-message basis
      *
@@ -166,7 +180,9 @@ namespace IrcCap {
                                               AWAY_NOTIFY,
                                               CAP_NOTIFY,
                                               CHGHOST,
+                                              //ECHO_MESSAGE, // Postponed for message pending UI with batch + labeled-response
                                               EXTENDED_JOIN,
+                                              INVITE_NOTIFY,
                                               MESSAGE_TAGS,
                                               MULTI_PREFIX,
                                               SASL,