aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-07-15 15:28:34 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-07-15 15:28:34 +0000
commit93931fb5172de50ddc074ba119218a39ef46ae49 (patch)
treed03eaac3de1bbd6940b3b5c3e38dd682bad55c94 /source
parent72be5ca32d8b44d777b31db7545b8a3045f727b1 (diff)
downloadqxmpp-93931fb5172de50ddc074ba119218a39ef46ae49.tar.gz
add some namespace definitions
Diffstat (limited to 'source')
-rw-r--r--source/QXmppConstants.cpp2
-rw-r--r--source/QXmppConstants.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/source/QXmppConstants.cpp b/source/QXmppConstants.cpp
index 595f84f1..d2285bef 100644
--- a/source/QXmppConstants.cpp
+++ b/source/QXmppConstants.cpp
@@ -35,6 +35,7 @@ const char* ns_stanza = "urn:ietf:params:xml:ns:xmpp-stanzas";
const char* ns_vcard = "vcard-temp";
const char* ns_auth = "jabber:iq:auth";
const char* ns_authFeature = "http://jabber.org/features/iq-auth";
+const char* ns_capabilities = "http://jabber.org/protocol/caps";
const char* ns_disco_info = "http://jabber.org/protocol/disco#info";
const char* ns_disco_items = "http://jabber.org/protocol/disco#items";
const char* ns_ibb = "http://jabber.org/protocol/ibb";
@@ -57,6 +58,7 @@ const char *ns_version = "jabber:iq:version";
const char *ns_data = "jabber:x:data";
// XEP-0166: Jingle
const char *ns_jingle = "urn:xmpp:jingle:1";
+const char *ns_jingle_raw_udp = "urn:xmpp:jingle:transports:raw-udp:1";
const char* ns_jingle_ice_udp = "urn:xmpp:jingle:transports:ice-udp:1";
const char *ns_jingle_rtp = "urn:xmpp:jingle:apps:rtp:1";
const char *ns_jingle_rtp_audio = "urn:xmpp:jingle:apps:rtp:audio";
diff --git a/source/QXmppConstants.h b/source/QXmppConstants.h
index da7fe049..c0248c35 100644
--- a/source/QXmppConstants.h
+++ b/source/QXmppConstants.h
@@ -36,6 +36,7 @@ extern const char* ns_stanza;
extern const char* ns_vcard;
extern const char* ns_auth;
extern const char* ns_authFeature;
+extern const char* ns_capabilities;
extern const char* ns_disco_info;
extern const char* ns_disco_items;
extern const char* ns_ibb;
@@ -57,6 +58,7 @@ extern const char *ns_version;
extern const char *ns_data;
extern const char *ns_jingle;
extern const char* ns_jingle_ice_udp;
+extern const char* ns_jingle_raw_udp;
extern const char *ns_jingle_rtp;
extern const char *ns_jingle_rtp_audio;
extern const char *ns_jingle_rtp_video;