ns.rs

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