jingle_rtp: Add a new parser/serialiser for XEP-0167.

This commit is contained in:
Emmanuel Gil Peyrot 2019-02-27 18:13:06 +01:00
commit 40d397c1fe
3 changed files with 151 additions and 0 deletions

View file

@ -82,6 +82,13 @@ pub const CAPS: &str = "http://jabber.org/protocol/caps";
/// XEP-0166: Jingle
pub const JINGLE: &str = "urn:xmpp:jingle:1";
/// XEP-0167: Jingle RTP Sessions
pub const JINGLE_RTP: &str = "urn:xmpp:jingle:apps:rtp:1";
/// XEP-0167: Jingle RTP Sessions
pub const JINGLE_RTP_AUDIO: &str = "urn:xmpp:jingle:apps:rtp:audio";
/// XEP-0167: Jingle RTP Sessions
pub const JINGLE_RTP_VIDEO: &str = "urn:xmpp:jingle:apps:rtp:video";
/// XEP-0172: User Nickname
pub const NICK: &str = "http://jabber.org/protocol/nick";