Muc <x xmlns='http://jabber.org/protocol/muc#user'/> and <status /> parser

This commit is contained in:
Maxime “pep” Buquet 2017-05-31 02:54:47 +01:00
commit bd19341f69
2 changed files with 271 additions and 5 deletions

View file

@ -21,6 +21,8 @@ pub const DISCO_INFO: &'static str = "http://jabber.org/protocol/disco#info";
/// XEP-0045: Multi-User Chat
pub const MUC: &'static str = "http://jabber.org/protocol/muc";
/// XEP-0045: Multi-User Chat
pub const MUC_USER: &'static str = "http://jabber.org/protocol/muc#user";
/// XEP-0047: In-Band Bytestreams
pub const IBB: &'static str = "http://jabber.org/protocol/ibb";