xmpp-rs/src/ns.rs
2017-02-21 18:17:49 +01:00

7 lines
358 B
Rust

//! Provides constants for namespaces.
pub const CLIENT: &'static str = "jabber:client";
pub const STREAM: &'static str = "http://etherx.jabber.org/streams";
pub const TLS: &'static str = "urn:ietf:params:xml:ns:xmpp-tls";
pub const SASL: &'static str = "urn:ietf:params:xml:ns:xmpp-sasl";
pub const BIND: &'static str = "urn:ietf:params:xml:ns:xmpp-bind";