xmpp-rs/src/ns.rs

35 lines
1.1 KiB
Rust
Raw Normal View History

2017-04-21 00:06:30 +00:00
/// RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
pub const JABBER_CLIENT: &'static str = "jabber:client";
2017-04-21 00:06:30 +00:00
/// XEP-0004: Data Forms
pub const DATA_FORMS: &'static str = "jabber:x:data";
2017-04-21 00:06:30 +00:00
/// XEP-0030: Service Discovery
pub const DISCO_INFO: &'static str = "http://jabber.org/protocol/disco#info";
/// XEP-0047: In-Band Bytestreams
pub const IBB: &'static str = "http://jabber.org/protocol/ibb";
2017-04-21 00:06:30 +00:00
/// XEP-0085: Chat State Notifications
pub const CHATSTATES: &'static str = "http://jabber.org/protocol/chatstates";
/// XEP-0166: Jingle
pub const JINGLE: &'static str = "urn:xmpp:jingle:1";
/// XEP-0184: Message Delivery Receipts
pub const RECEIPTS: &'static str = "urn:xmpp:receipts";
2017-04-21 00:06:30 +00:00
/// XEP-0199: XMPP Ping
pub const PING: &'static str = "urn:xmpp:ping";
/// XEP-0221: Data Forms Media Element
pub const MEDIA_ELEMENT: &'static str = "urn:xmpp:media-element";
2017-04-21 00:53:47 +00:00
/// XEP-0224: Attention
pub const ATTENTION: &'static str = "urn:xmpp:attention:0";
2017-04-21 00:06:30 +00:00
/// XEP-0390: Entity Capabilities 2.0
pub const ECAPS2: &'static str = "urn:xmpp:caps";
/// XEP-0390: Entity Capabilities 2.0
pub const ECAPS2_OPTIMIZE: &'static str = "urn:xmpp:caps:optimize";