xmpp_parsers/
ns.rs

1// Copyright (c) 2017-2018 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
2// Copyright (c) 2017 Maxime “pep” Buquet <pep@bouah.net>
3//
4// This Source Code Form is subject to the terms of the Mozilla Public
5// License, v. 2.0. If a copy of the MPL was not distributed with this
6// file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
8/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
9pub const JABBER_CLIENT: &str = "jabber:client";
10/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
11pub const XMPP_STANZAS: &str = "urn:ietf:params:xml:ns:xmpp-stanzas";
12/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
13pub const STREAM: &str = "http://etherx.jabber.org/streams";
14/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
15pub const TLS: &str = "urn:ietf:params:xml:ns:xmpp-tls";
16/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
17pub const SASL: &str = "urn:ietf:params:xml:ns:xmpp-sasl";
18/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
19pub const BIND: &str = "urn:ietf:params:xml:ns:xmpp-bind";
20
21/// RFC 6121: Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence
22pub const ROSTER: &str = "jabber:iq:roster";
23
24/// RFC 7395: An Extensible Messaging and Presence Protocol (XMPP) Subprotocol for WebSocket
25pub const WEBSOCKET: &str = "urn:ietf:params:xml:ns:xmpp-framing";
26
27/// XEP-0004: Data Forms
28pub const DATA_FORMS: &str = "jabber:x:data";
29
30/// XEP-0030: Service Discovery
31pub const DISCO_INFO: &str = "http://jabber.org/protocol/disco#info";
32/// XEP-0030: Service Discovery
33pub const DISCO_ITEMS: &str = "http://jabber.org/protocol/disco#items";
34
35/// XEP-0045: Multi-User Chat
36pub const MUC: &str = "http://jabber.org/protocol/muc";
37/// XEP-0045: Multi-User Chat
38pub const MUC_USER: &str = "http://jabber.org/protocol/muc#user";
39
40/// XEP-0047: In-Band Bytestreams
41pub const IBB: &str = "http://jabber.org/protocol/ibb";
42
43/// XEP-0048: Bookmarks
44pub const BOOKMARKS: &str = "storage:bookmarks";
45
46/// XEP-0049: Private XML Storage
47pub const PRIVATE: &str = "jabber:iq:private";
48
49/// XEP-0054: vcard-temp
50pub const VCARD: &str = "vcard-temp";
51
52/// XEP-0059: Result Set Management
53pub const RSM: &str = "http://jabber.org/protocol/rsm";
54
55/// XEP-0060: Publish-Subscribe
56pub const PUBSUB: &str = "http://jabber.org/protocol/pubsub";
57/// XEP-0060: Publish-Subscribe
58pub const PUBSUB_ERRORS: &str = "http://jabber.org/protocol/pubsub#errors";
59/// XEP-0060: Publish-Subscribe
60pub const PUBSUB_EVENT: &str = "http://jabber.org/protocol/pubsub#event";
61/// XEP-0060: Publish-Subscribe
62pub const PUBSUB_OWNER: &str = "http://jabber.org/protocol/pubsub#owner";
63/// XEP-0060: Publish-Subscribe node configuration
64pub const PUBSUB_CONFIGURE: &str = "http://jabber.org/protocol/pubsub#node_config";
65
66/// XEP-0066: Out of Band Data
67pub const OOB: &str = "jabber:x:oob";
68
69/// XEP-0071: XHTML-IM
70pub const XHTML_IM: &str = "http://jabber.org/protocol/xhtml-im";
71/// XEP-0071: XHTML-IM
72pub const XHTML: &str = "http://www.w3.org/1999/xhtml";
73
74/// XEP-0077: In-Band Registration
75pub const REGISTER: &str = "jabber:iq:register";
76
77/// XEP-0084: User Avatar
78pub const AVATAR_DATA: &str = "urn:xmpp:avatar:data";
79/// XEP-0084: User Avatar
80pub const AVATAR_METADATA: &str = "urn:xmpp:avatar:metadata";
81
82/// XEP-0085: Chat State Notifications
83pub const CHATSTATES: &str = "http://jabber.org/protocol/chatstates";
84
85/// XEP-0092: Software Version
86pub const VERSION: &str = "jabber:iq:version";
87
88/// XEP-0107: User Mood
89pub const MOOD: &str = "http://jabber.org/protocol/mood";
90
91/// XEP-0114: Jabber Component Protocol
92pub const COMPONENT_ACCEPT: &str = "jabber:component:accept";
93
94/// XEP-0114: Jabber Component Protocol
95pub const COMPONENT: &str = "jabber:component:accept";
96
97/// XEP-0115: Entity Capabilities
98pub const CAPS: &str = "http://jabber.org/protocol/caps";
99
100/// XEP-0118: User Tune
101pub const TUNE: &str = "http://jabber.org/protocol/tune";
102
103/// XEP-0122: Data Forms Validation
104pub const XDATA_VALIDATE: &str = "http://jabber.org/protocol/xdata-validate";
105
106/// XEP-0153: vCard-Based Avatars
107pub const VCARD_UPDATE: &str = "vcard-temp:x:update";
108
109/// XEP-0157: Contact Addresses for XMPP Services
110pub const SERVER_INFO: &str = "http://jabber.org/network/serverinfo";
111
112/// XEP-0166: Jingle
113pub const JINGLE: &str = "urn:xmpp:jingle:1";
114
115/// XEP-0167: Jingle RTP Sessions
116pub const JINGLE_RTP: &str = "urn:xmpp:jingle:apps:rtp:1";
117/// XEP-0167: Jingle RTP Sessions
118pub const JINGLE_RTP_AUDIO: &str = "urn:xmpp:jingle:apps:rtp:audio";
119/// XEP-0167: Jingle RTP Sessions
120pub const JINGLE_RTP_VIDEO: &str = "urn:xmpp:jingle:apps:rtp:video";
121
122/// XEP-0172: User Nickname
123pub const NICK: &str = "http://jabber.org/protocol/nick";
124
125/// XEP-0176: Jingle ICE-UDP Transport Method
126pub const JINGLE_ICE_UDP: &str = "urn:xmpp:jingle:transports:ice-udp:1";
127
128/// XEP-0177: Jingle Raw UDP Transport Method
129pub const JINGLE_RAW_UDP: &str = "urn:xmpp:jingle:transports:raw-udp:1";
130
131/// XEP-0184: Message Delivery Receipts
132pub const RECEIPTS: &str = "urn:xmpp:receipts";
133
134/// XEP-0191: Blocking Command
135pub const BLOCKING: &str = "urn:xmpp:blocking";
136/// XEP-0191: Blocking Command
137pub const BLOCKING_ERRORS: &str = "urn:xmpp:blocking:errors";
138
139/// XEP-0198: Stream Management
140pub const SM: &str = "urn:xmpp:sm:3";
141
142/// XEP-0199: XMPP Ping
143pub const PING: &str = "urn:xmpp:ping";
144
145/// XEP-0202: Entity Time
146pub const TIME: &str = "urn:xmpp:time";
147
148/// XEP-0203: Delayed Delivery
149pub const DELAY: &str = "urn:xmpp:delay";
150
151/// XEP-0215: External Service Discovery
152pub const EXT_DISCO: &str = "urn:xmpp:extdisco:2";
153
154/// XEP-0221: Data Forms Media Element
155pub const MEDIA_ELEMENT: &str = "urn:xmpp:media-element";
156
157/// XEP-0224: Attention
158pub const ATTENTION: &str = "urn:xmpp:attention:0";
159
160/// XEP-0231: Bits of Binary
161pub const BOB: &str = "urn:xmpp:bob";
162
163/// XEP-0234: Jingle File Transfer
164pub const JINGLE_FT: &str = "urn:xmpp:jingle:apps:file-transfer:5";
165/// XEP-0234: Jingle File Transfer
166pub const JINGLE_FT_ERROR: &str = "urn:xmpp:jingle:apps:file-transfer:errors:0";
167
168/// XEP-0257: Client Certificate Management for SASL EXTERNAL
169pub const SASL_CERT: &str = "urn:xmpp:saslcert:1";
170
171/// XEP-0260: Jingle SOCKS5 Bytestreams Transport Method
172pub const JINGLE_S5B: &str = "urn:xmpp:jingle:transports:s5b:1";
173
174/// XEP-0261: Jingle In-Band Bytestreams Transport Method
175pub const JINGLE_IBB: &str = "urn:xmpp:jingle:transports:ibb:1";
176
177/// XEP-0264: Jingle Content Thumbnails
178pub const JINGLE_THUMBNAILS: &str = "urn:xmpp:thumbs:1";
179
180/// XEP-0277: Microblogging over XMPP
181pub const MICROBLOG: &str = "urn:xmpp:microblog:0";
182
183/// XEP-0280: Message Carbons
184pub const CARBONS: &str = "urn:xmpp:carbons:2";
185
186/// XEP-0293: Jingle RTP Feedback Negotiation
187pub const JINGLE_RTCP_FB: &str = "urn:xmpp:jingle:apps:rtp:rtcp-fb:0";
188
189/// XEP-0294: Jingle RTP Header Extensions Negotiation
190pub const JINGLE_RTP_HDREXT: &str = "urn:xmpp:jingle:apps:rtp:rtp-hdrext:0";
191
192/// XEP-0297: Stanza Forwarding
193pub const FORWARD: &str = "urn:xmpp:forward:0";
194
195/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
196pub const HASHES: &str = "urn:xmpp:hashes:2";
197/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
198pub const HASH_ALGO_SHA_256: &str = "urn:xmpp:hash-function-text-names:sha-256";
199/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
200pub const HASH_ALGO_SHA_512: &str = "urn:xmpp:hash-function-text-names:sha-512";
201/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
202pub const HASH_ALGO_SHA3_256: &str = "urn:xmpp:hash-function-text-names:sha3-256";
203/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
204pub const HASH_ALGO_SHA3_512: &str = "urn:xmpp:hash-function-text-names:sha3-512";
205/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
206pub const HASH_ALGO_BLAKE2B_256: &str = "urn:xmpp:hash-function-text-names:id-blake2b256";
207/// XEP-0300: Use of Cryptographic Hash Functions in XMPP
208pub const HASH_ALGO_BLAKE2B_512: &str = "urn:xmpp:hash-function-text-names:id-blake2b512";
209
210/// XEP-0301: In-Band Real Time Text
211pub const RTT: &str = "urn:xmpp:rtt:0";
212
213/// XEP-0308: Last Message Correction
214pub const MESSAGE_CORRECT: &str = "urn:xmpp:message-correct:0";
215
216/// XEP-0313: Message Archive Management
217pub const MAM: &str = "urn:xmpp:mam:2";
218
219/// XEP-0319: Last User Interaction in Presence
220pub const IDLE: &str = "urn:xmpp:idle:1";
221
222/// XEP-0320: Use of DTLS-SRTP in Jingle Sessions
223pub const JINGLE_DTLS: &str = "urn:xmpp:jingle:apps:dtls:0";
224
225/// XEP-0328: JID Prep
226pub const JID_PREP: &str = "urn:xmpp:jidprep:0";
227
228/// XEP-0338: Jingle Grouping Framework
229pub const JINGLE_GROUPING: &str = "urn:xmpp:jingle:apps:grouping:0";
230
231/// XEP-0339: Source-Specific Media Attributes in Jingle
232pub const JINGLE_SSMA: &str = "urn:xmpp:jingle:apps:rtp:ssma:0";
233
234/// XEP-0352: Client State Indication
235pub const CSI: &str = "urn:xmpp:csi:0";
236
237/// XEP-0353: Jingle Message Initiation
238pub const JINGLE_MESSAGE: &str = "urn:xmpp:jingle-message:0";
239
240/// XEP-0357: Push Notifications
241pub const PUSH: &str = "urn:xmpp:push:0";
242
243/// XEP-0359: Unique and Stable Stanza IDs
244pub const SID: &str = "urn:xmpp:sid:0";
245
246/// XEP-0363: HTTP File Upload
247pub const HTTP_UPLOAD: &str = "urn:xmpp:http:upload:0";
248
249/// XEP-0373: OpenPGP for XMPP
250pub const OX: &str = "urn:xmpp:openpgp:0";
251/// XEP-0373: OpenPGP for XMPP
252pub const OX_PUBKEYS: &str = "urn:xmpp:openpgp:0:public-keys";
253
254/// XEP-0377: Spam Reporting
255pub const SPAM_REPORTING: &str = "urn:xmpp:reporting:1";
256
257/// XEP-0380: Explicit Message Encryption
258pub const EME: &str = "urn:xmpp:eme:0";
259
260/// XEP-0384: OMEMO Encryption (experimental version 0.3.0)
261pub const LEGACY_OMEMO: &str = "eu.siacs.conversations.axolotl";
262/// XEP-0384: OMEMO Encryption (experimental version 0.3.0)
263pub const LEGACY_OMEMO_DEVICELIST: &str = "eu.siacs.conversations.axolotl.devicelist";
264/// XEP-0384: OMEMO Encryption (experimental version 0.3.0)
265pub const LEGACY_OMEMO_BUNDLES: &str = "eu.siacs.conversations.axolotl.bundles";
266
267/// XEP-0386: Bind 2
268pub const BIND2: &str = "urn:xmpp:bind:0";
269
270/// XEP-0388: Extensible SASL Profile
271pub const SASL2: &str = "urn:xmpp:sasl:2";
272
273/// XEP-0390: Entity Capabilities 2.0
274pub const ECAPS2: &str = "urn:xmpp:caps";
275/// XEP-0390: Entity Capabilities 2.0
276pub const ECAPS2_OPTIMIZE: &str = "urn:xmpp:caps:optimize";
277
278/// XEP-0402: PEP Native Bookmarks
279pub const BOOKMARKS2: &str = "urn:xmpp:bookmarks:1";
280/// XEP-0402: PEP Native Bookmarks
281pub const BOOKMARKS2_COMPAT: &str = "urn:xmpp:bookmarks:1#compat";
282/// XEP-0402: PEP Native Bookmarks
283pub const BOOKMARKS2_COMPAT_PEP: &str = "urn:xmpp:bookmarks:1#compat-pep";
284
285/// XEP-0421: Anonymous unique occupant identifiers for MUCs
286pub const OID: &str = "urn:xmpp:occupant-id:0";
287
288/// XEP-0440: SASL Channel-Binding Type Capability
289pub const SASL_CB: &str = "urn:xmpp:sasl-cb:0";
290
291/// XEP-0444: Message Reactions
292pub const REACTIONS: &str = "urn:xmpp:reactions:0";
293
294/// XEP-0478: Stream Limits Advertisement
295pub const STREAM_LIMITS: &str = "urn:xmpp:stream-limits:0";
296
297/// XEP-0484: Fast Authentication Streamlining Tokens
298pub const FAST: &str = "urn:xmpp:fast:0";
299
300/// XEP-0490: Message Displayed Synchronization
301pub const MDS: &str = "urn:xmpp:mds:displayed:0";
302
303/// Alias for the main namespace of the stream, that is "jabber:client" when
304/// the component feature isn’t enabled.
305#[cfg(not(feature = "component"))]
306pub const DEFAULT_NS: &str = JABBER_CLIENT;
307
308/// Alias for the main namespace of the stream, that is
309/// "jabber:component:accept" when the component feature is enabled.
310#[cfg(feature = "component")]
311pub const DEFAULT_NS: &str = COMPONENT_ACCEPT;