xmpp-rs/src/ns.rs

10 lines
582 B
Rust
Raw Normal View History

2017-04-19 22:21:23 +00:00
pub const JABBER_CLIENT_NS: &'static str = "jabber:client";
2017-04-18 19:44:36 +00:00
pub const DISCO_INFO_NS: &'static str = "http://jabber.org/protocol/disco#info";
pub const DATA_FORMS_NS: &'static str = "jabber:x:data";
pub const MEDIA_ELEMENT_NS: &'static str = "urn:xmpp:media-element";
2017-04-19 01:27:42 +00:00
pub const JINGLE_NS: &'static str = "urn:xmpp:jingle:1";
2017-04-19 17:59:07 +00:00
pub const PING_NS: &'static str = "urn:xmpp:ping";
2017-04-19 18:15:57 +00:00
pub const CHATSTATES_NS: &'static str = "http://jabber.org/protocol/chatstates";
2017-04-19 20:52:14 +00:00
pub const IBB_NS: &'static str = "http://jabber.org/protocol/ibb";
2017-04-19 23:43:33 +00:00
pub const RECEIPTS_NS: &'static str = "urn:xmpp:receipts";