1// Copyright (c) 2017 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
8pub const JABBER_CLIENT: &'static str = "jabber:client";
9
10/// XEP-0004: Data Forms
11pub const DATA_FORMS: &'static str = "jabber:x:data";
12
13/// XEP-0030: Service Discovery
14pub const DISCO_INFO: &'static str = "http://jabber.org/protocol/disco#info";
15
16/// XEP-0047: In-Band Bytestreams
17pub const IBB: &'static str = "http://jabber.org/protocol/ibb";
18
19/// XEP-0059: Result Set Management
20pub const RSM: &'static str = "http://jabber.org/protocol/rsm";
21
22/// XEP-0085: Chat State Notifications
23pub const CHATSTATES: &'static str = "http://jabber.org/protocol/chatstates";
24
25/// XEP-0166: Jingle
26pub const JINGLE: &'static str = "urn:xmpp:jingle:1";
27
28/// XEP-0184: Message Delivery Receipts
29pub const RECEIPTS: &'static str = "urn:xmpp:receipts";
30
31/// XEP-0199: XMPP Ping
32pub const PING: &'static str = "urn:xmpp:ping";
33
34/// XEP-0203: Delayed Delivery
35pub const DELAY: &'static str = "urn:xmpp:delay";
36
37/// XEP-0221: Data Forms Media Element
38pub const MEDIA_ELEMENT: &'static str = "urn:xmpp:media-element";
39
40/// XEP-0224: Attention
41pub const ATTENTION: &'static str = "urn:xmpp:attention:0";
42
43/// XEP-0234: Jingle File Transfer
44pub const JINGLE_FT: &'static str = "urn:xmpp:jingle:apps:file-transfer:5";
45/// XEP-0234: Jingle File Transfer
46pub const JINGLE_FT_ERROR: &'static str = "urn:xmpp:jingle:apps:file-transfer:errors:0";
47
48/// XEP-0261: Jingle In-Band Bytestreams Transport Method
49pub const JINGLE_IBB: &'static str = "urn:xmpp:jingle:transports:ibb:1";
50
51/// XEP-0297: Stanza Forwarding
52pub const FORWARD: &'static str = "urn:xmpp:forward:0";
53
54/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
55pub const HASHES: &'static str = "urn:xmpp:hashes:2";
56/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
57pub const HASH_ALGO_SHA_256: &'static str = "urn:xmpp:hash-function-text-names:sha-256";
58/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
59pub const HASH_ALGO_SHA_512: &'static str = "urn:xmpp:hash-function-text-names:sha-512";
60/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
61pub const HASH_ALGO_SHA3_256: &'static str = "urn:xmpp:hash-function-text-names:sha3-256";
62/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
63pub const HASH_ALGO_SHA3_512: &'static str = "urn:xmpp:hash-function-text-names:sha3-512";
64/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
65pub const HASH_ALGO_BLAKE2B_256: &'static str = "urn:xmpp:hash-function-text-names:id-blake2b256";
66/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
67pub const HASH_ALGO_BLAKE2B_512: &'static str = "urn:xmpp:hash-function-text-names:id-blake2b512";
68
69/// XEP-0308: Last Message Correction
70pub const MESSAGE_CORRECT: &'static str = "urn:xmpp:message-correct:0";
71
72/// XEP-0313: Message Archive Management
73pub const MAM: &'static str = "urn:xmpp:mam:2";
74
75/// XEP-0359: Unique and Stable Stanza IDs
76pub const SID: &'static str = "urn:xmpp:sid:0";
77
78/// XEP-0380: Explicit Message Encryption
79pub const EME: &'static str = "urn:xmpp:eme:0";
80
81/// XEP-0390: Entity Capabilities 2.0
82pub const ECAPS2: &'static str = "urn:xmpp:caps";
83/// XEP-0390: Entity Capabilities 2.0
84pub const ECAPS2_OPTIMIZE: &'static str = "urn:xmpp:caps:optimize";