xmpp-parsers: Implement XEP-0507: Jingle Content Category

This gives the semantic of each video contents in a Jingle session.
This commit is contained in:
Link Mauve 2026-02-10 13:20:19 +01:00 committed by pep
commit 4f11d2fe5c
5 changed files with 102 additions and 0 deletions

View file

@ -310,6 +310,9 @@ pub const FAST: &str = "urn:xmpp:fast:0";
/// XEP-0490: Message Displayed Synchronization
pub const MDS: &str = "urn:xmpp:mds:displayed:0";
/// XEP-0507: Jingle Content Category
pub const JINGLE_CONTENT: &str = "urn:xmpp:jingle:apps:category:0";
/// Alias for the main namespace of the stream, that is "jabber:client" when
/// the component feature isnt enabled.
#[cfg(not(feature = "component"))]