ns.rs

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