7 lines
358 B
Rust
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";
|