X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Firccap.h;h=3d1e793d122c96dc6080b3f2ad187a6021b0a14c;hb=03285df24f3e4eac5badc13fedc13603d912ecdc;hp=0bcb66d253fd64e68d696fa2954b96b50c46769c;hpb=d778861aa194578cd90e019b64fe285ea58746c4;p=quassel.git diff --git a/src/common/irccap.h b/src/common/irccap.h index 0bcb66d2..3d1e793d 100644 --- a/src/common/irccap.h +++ b/src/common/irccap.h @@ -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,