mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
jingle_ice_udp: Add a new parser/serialiser for XEP-0176.
This commit is contained in:
parent
40d397c1fe
commit
beacbaeb86
2 changed files with 6 additions and 0 deletions
|
@ -110,6 +110,9 @@ pub mod jingle_rtp;
|
|||
/// XEP-0172: User Nickname
|
||||
pub mod nick;
|
||||
|
||||
/// XEP-0176: Jingle ICE-UDP Transport Method
|
||||
pub mod jingle_ice_udp;
|
||||
|
||||
/// XEP-0184: Message Delivery Receipts
|
||||
pub mod receipts;
|
||||
|
||||
|
|
|
@ -92,6 +92,9 @@ 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";
|
||||
|
||||
/// 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
|
||||
pub const RECEIPTS: &str = "urn:xmpp:receipts";
|
||||
|
||||
|
|
Loading…
Reference in a new issue