87 lines
2.1 KiB
Dart
87 lines
2.1 KiB
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 startTlsXmlns = "urn:ietf:params:xml:ns:xmpp-tls";
|
|
const fullStanzaXmlns = "urn:ietf:params:xml:ns:xmpp-stanzas";
|
|
|
|
// RFC 6121
|
|
const rosterXmlns = "jabber:iq:roster";
|
|
|
|
// XEP-0004
|
|
const dataFormsXmlns = "jabber:x:data";
|
|
|
|
// XEP-0030
|
|
const discoInfoXmlns = "http://jabber.org/protocol/disco#info";
|
|
const discoItemsXmlns = "http://jabber.org/protocol/disco#items";
|
|
|
|
// XEP-0054
|
|
const vCardTempXmlns = "vcard-temp";
|
|
const vCardTempUpdate = "vcard-temp:x:update";
|
|
|
|
// XEP-0060
|
|
const pubsubXmlns = "http://jabber.org/protocol/pubsub";
|
|
const pubsubEventXmlns = "http://jabber.org/protocol/pubsub#event";
|
|
const pubsubPublishOptionsXmlns = "http://jabber.org/protocol/pubsub#publish-options";
|
|
// XEP-0066
|
|
const oobDataXmlns = "jabber:x:oob";
|
|
|
|
// XEP-0084
|
|
const userAvatarDataXmlns = "urn:xmpp:avatar:data";
|
|
|
|
// XEP-0152
|
|
const capsXmlns = "http://jabber.org/protocol/caps";
|
|
|
|
// XEP-0184
|
|
const deliveryXmlns = "urn:xmpp:receipts";
|
|
|
|
// XEP-0191
|
|
const blockingXmlns = "urn:xmpp:blocking";
|
|
|
|
// XEP-0198
|
|
const smXmlns = "urn:xmpp:sm:3";
|
|
|
|
// XEP-0234
|
|
const jingleFileTransferXmlns = "urn:xmpp:jingle:apps:file-transfer:5";
|
|
|
|
// XEP-0280
|
|
const carbonsXmlns = "urn:xmpp:carbons:2";
|
|
|
|
// XEP-0297
|
|
const forwardedXmlns = "urn:xmpp:forward:0";
|
|
|
|
// XEP-0300
|
|
const hashXmlns = "urn:xmpp:hashes:2";
|
|
|
|
// XEP-0333
|
|
const chatMarkersXmlns = "urn:xmpp:chat-markers:0";
|
|
|
|
// XEP-0352
|
|
const csiXmlns = "urn:xmpp:csi:0";
|
|
|
|
// XEP-0359
|
|
const stableIdXmlns = "urn:xmpp:sid:0";
|
|
|
|
// XEP-0363
|
|
const httpFileUploadXmlns = "urn:xmpp:http:upload:0";
|
|
|
|
// XEP-0372
|
|
const referenceXmlns = "urn:xmpp:reference:0";
|
|
|
|
// XEP-0385
|
|
const simsXmlns = "urn:xmpp:sims:1";
|
|
|
|
// XEP-0446
|
|
const fileMetadataXmlns = "urn:xmpp:file:metadata:0";
|
|
|
|
// XEP-0447
|
|
const sfsXmlns = "urn:xmpp:sfs:0";
|
|
|
|
// XEP-0461
|
|
const replyXmlns = "urn:xmpp:reply:0";
|
|
const fallbackXmlns = "urn:xmpp:feature-fallback:0";
|
|
|
|
// ???
|
|
const urlDataXmlns = "http://jabber.org/protocol/url-data";
|