1/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
2pub const JABBER_CLIENT: &'static str = "jabber:client";
3
4/// XEP-0004: Data Forms
5pub const DATA_FORMS: &'static str = "jabber:x:data";
6
7/// XEP-0030: Service Discovery
8pub const DISCO_INFO: &'static str = "http://jabber.org/protocol/disco#info";
9
10/// XEP-0047: In-Band Bytestreams
11pub const IBB: &'static str = "http://jabber.org/protocol/ibb";
12
13/// XEP-0085: Chat State Notifications
14pub const CHATSTATES: &'static str = "http://jabber.org/protocol/chatstates";
15
16/// XEP-0166: Jingle
17pub const JINGLE: &'static str = "urn:xmpp:jingle:1";
18
19/// XEP-0184: Message Delivery Receipts
20pub const RECEIPTS: &'static str = "urn:xmpp:receipts";
21
22/// XEP-0199: XMPP Ping
23pub const PING: &'static str = "urn:xmpp:ping";
24
25/// XEP-0203: Delayed Delivery
26pub const DELAY: &'static str = "urn:xmpp:delay";
27
28/// XEP-0221: Data Forms Media Element
29pub const MEDIA_ELEMENT: &'static str = "urn:xmpp:media-element";
30
31/// XEP-0224: Attention
32pub const ATTENTION: &'static str = "urn:xmpp:attention:0";
33
34/// XEP-0234: Jingle File Transfer
35pub const JINGLE_FT: &'static str = "urn:xmpp:jingle:apps:file-transfer:5";
36/// XEP-0234: Jingle File Transfer
37pub const JINGLE_FT_ERROR: &'static str = "urn:xmpp:jingle:apps:file-transfer:errors:0";
38
39/// XEP-0261: Jingle In-Band Bytestreams Transport Method
40pub const JINGLE_IBB: &'static str = "urn:xmpp:jingle:transports:ibb:1";
41
42/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
43pub const HASHES: &'static str = "urn:xmpp:hashes:2";
44/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
45pub const HASH_ALGO_SHA_256: &'static str = "urn:xmpp:hash-function-text-names:sha-256";
46/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
47pub const HASH_ALGO_SHA_512: &'static str = "urn:xmpp:hash-function-text-names:sha-512";
48/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
49pub const HASH_ALGO_SHA3_256: &'static str = "urn:xmpp:hash-function-text-names:sha3-256";
50/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
51pub const HASH_ALGO_SHA3_512: &'static str = "urn:xmpp:hash-function-text-names:sha3-512";
52/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
53pub const HASH_ALGO_BLAKE2B_256: &'static str = "urn:xmpp:hash-function-text-names:id-blake2b256";
54/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
55pub const HASH_ALGO_BLAKE2B_512: &'static str = "urn:xmpp:hash-function-text-names:id-blake2b512";
56
57/// XEP-0308: Last Message Correction
58pub const MESSAGE_CORRECT: &'static str = "urn:xmpp:message-correct:0";
59
60/// XEP-0380: Explicit Message Encryption
61pub const EME: &'static str = "urn:xmpp:eme:0";
62
63/// XEP-0390: Entity Capabilities 2.0
64pub const ECAPS2: &'static str = "urn:xmpp:caps";
65/// XEP-0390: Entity Capabilities 2.0
66pub const ECAPS2_OPTIMIZE: &'static str = "urn:xmpp:caps:optimize";