26 lines
697 B
Dart
26 lines
697 B
Dart
// RFC 6120
|
|
const saslXmlns = "urn:ietf:params:xml:ns:xmpp-sasl";
|
|
const stanzaXmlns = "jabber:client";
|
|
const streamXmlns = "http://etherx.jabber.org/streams";
|
|
const bindXmlns = "urn:ietf:params:xml:ns:xmpp-bind";
|
|
const fullStanzaXmlns = "urn:ietf:params:xml:ns:xmpp-stanzas";
|
|
|
|
// RFC 6121
|
|
const rosterXmlns = "jabber:iq:roster";
|
|
|
|
// XEP-0030
|
|
const discoInfoXmlns = "http://jabber.org/protocol/disco#info";
|
|
const discoItemsXmlns = "http://jabber.org/protocol/disco#items";
|
|
|
|
// XEP-0152
|
|
const capsXmlns = "http://jabber.org/protocol/caps";
|
|
|
|
// XEP-0198
|
|
const smXmlns = "urn:xmpp:sm:3";
|
|
|
|
// XEP-0333
|
|
const chatMarkersXmlns = "urn:xmpp:chat-markers:0";
|
|
|
|
// XEP-0352
|
|
const csiXmlns = "urn:xmpp:csi:0";
|