xmpp-parsers: Implement XEP-0484: Fast Authentication Streamlining Tokens

This specification defines a token-based method to streamline
authentication in XMPP, allowing fully authenticated stream
establishment within a single round-trip.
This commit is contained in:
Emmanuel Gil Peyrot 2024-06-30 18:07:00 +02:00 committed by Jonas Schäfer
commit 32e8f2ec2e
5 changed files with 132 additions and 0 deletions

View file

@ -302,3 +302,6 @@ pub const DEFAULT_NS: &str = JABBER_CLIENT;
/// "jabber:component:accept" when the component feature is enabled.
#[cfg(feature = "component")]
pub const DEFAULT_NS: &str = COMPONENT_ACCEPT;
/// XEP-0484: Fast Authentication Streamlining Tokens
pub const FAST: &str = "urn:xmpp:fast:0";