jingle_ice_udp: Add a new parser/serialiser for XEP-0176.

This commit is contained in:
Emmanuel Gil Peyrot 2019-02-27 18:13:18 +01:00
parent 40d397c1fe
commit beacbaeb86
2 changed files with 6 additions and 0 deletions

View file

@ -110,6 +110,9 @@ pub mod jingle_rtp;
/// XEP-0172: User Nickname /// XEP-0172: User Nickname
pub mod nick; pub mod nick;
/// XEP-0176: Jingle ICE-UDP Transport Method
pub mod jingle_ice_udp;
/// XEP-0184: Message Delivery Receipts /// XEP-0184: Message Delivery Receipts
pub mod receipts; pub mod receipts;

View file

@ -92,6 +92,9 @@ pub const JINGLE_RTP_VIDEO: &str = "urn:xmpp:jingle:apps:rtp:video";
/// XEP-0172: User Nickname /// XEP-0172: User Nickname
pub const NICK: &str = "http://jabber.org/protocol/nick"; pub const NICK: &str = "http://jabber.org/protocol/nick";
/// XEP-0176: Jingle ICE-UDP Transport Method
pub const JINGLE_ICE_UDP: &str = "urn:xmpp:jingle:transports:ice-udp:1";
/// XEP-0184: Message Delivery Receipts /// XEP-0184: Message Delivery Receipts
pub const RECEIPTS: &str = "urn:xmpp:receipts"; pub const RECEIPTS: &str = "urn:xmpp:receipts";