Migrate certificates, icons, logs to XDG dirs
[pidgin-git.git] / libpurple / protocols / jabber / namespaces.h
blob042077544ef695a8dc1f3320bdc763a42206cc37
1 /*
2 * purple - Jabber Protocol Plugin
4 * Purple is the legal property of its developers, whose names are too numerous
5 * to list here. Please refer to the COPYRIGHT file distributed with this
6 * source distribution.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
24 #ifndef PURPLE_JABBER_NAMESPACES_H_
25 #define PURPLE_JABBER_NAMESPACES_H_
27 #define NS_XMPP_BIND "urn:ietf:params:xml:ns:xmpp-bind"
28 #define NS_XMPP_CLIENT "jabber:client"
29 #define NS_XMPP_SASL "urn:ietf:params:xml:ns:xmpp-sasl"
30 #define NS_XMPP_SESSION "urn:ietf:params:xml:ns:xmpp-session"
31 #define NS_XMPP_STANZAS "urn:ietf:params:xml:ns:xmpp-stanzas"
32 #define NS_XMPP_STREAMS "http://etherx.jabber.org/streams"
33 #define NS_XMPP_TLS "urn:ietf:params:xml:ns:xmpp-tls"
35 /* XEP-0012 Last Activity (and XEP-0256 Last Activity in Presence) */
36 #define NS_LAST_ACTIVITY "jabber:iq:last"
38 /* XEP-0030 Service Discovery */
39 #define NS_DISCO_INFO "http://jabber.org/protocol/disco#info"
40 #define NS_DISCO_ITEMS "http://jabber.org/protocol/disco#items"
42 /* XEP-0047 IBB (In-band bytestreams) */
43 #define NS_IBB "http://jabber.org/protocol/ibb"
45 /* XEP-0065 SOCKS5 Bytestreams */
46 #define NS_BYTESTREAMS "http://jabber.org/protocol/bytestreams"
48 /* XEP-0066 Out of Band Data (OOB) */
49 #define NS_OOB_IQ_DATA "jabber:iq:oob"
50 #define NS_OOB_X_DATA "jabber:x:oob"
52 /* XEP-0071 XHTML-IM (rich-text messages) */
53 #define NS_XHTML_IM "http://jabber.org/protocol/xhtml-im"
54 #define NS_XHTML "http://www.w3.org/1999/xhtml"
56 /* XEP-0084 v0.12 User Avatar */
57 #define NS_AVATAR_0_12_DATA "http://www.xmpp.org/extensions/xep-0084.html#ns-data"
58 #define NS_AVATAR_0_12_METADATA "http://www.xmpp.org/extensions/xep-0084.html#ns-metadata"
60 /* XEP-0084 v1.1 User Avatar */
61 #define NS_AVATAR_1_1_DATA "urn:xmpp:avatar:data"
62 #define NS_AVATAR_1_1_METADATA "urn:xmpp:avatar:metadata"
64 /* XEP-0096 SI File Transfer */
65 #define NS_SI_FILE_TRANSFER "http://jabber.org/protocol/si/profile/file-transfer"
67 /* XEP-0124 Bidirectional-streams Over Synchronous HTTP (BOSH) */
68 #define NS_BOSH "http://jabber.org/protocol/httpbind"
70 /* XEP-0191 Simple Communications Blocking */
71 #define NS_SIMPLE_BLOCKING "urn:xmpp:blocking"
73 /* XEP-0199 Ping */
74 #define NS_PING "urn:xmpp:ping"
76 /* XEP-0202 Entity Time */
77 #define NS_ENTITY_TIME "urn:xmpp:time"
79 /* XEP-0203 Delayed Delivery (and legacy delayed delivery) */
80 #define NS_DELAYED_DELIVERY "urn:xmpp:delay"
81 #define NS_DELAYED_DELIVERY_LEGACY "jabber:x:delay"
83 /* XEP-0206 XMPP over BOSH */
84 #define NS_XMPP_BOSH "urn:xmpp:xbosh"
86 /* XEP-0224 Attention */
87 #define NS_ATTENTION "urn:xmpp:attention:0"
89 /* XEP-0231 BoB (Bits of Binary) */
90 #define NS_BOB "urn:xmpp:bob"
92 /* XEP-0237 Roster Versioning */
93 #define NS_ROSTER_VERSIONING "urn:xmpp:features:rosterver"
95 /* XEP-0264 File Transfer Thumbnails (Thumbs) */
96 #define NS_THUMBS "urn:xmpp:thumbs:0"
98 /* Google extensions */
99 #define NS_GOOGLE_CAMERA "http://www.google.com/xmpp/protocol/camera/v1"
100 #define NS_GOOGLE_VIDEO "http://www.google.com/xmpp/protocol/video/v1"
101 #define NS_GOOGLE_VOICE "http://www.google.com/xmpp/protocol/voice/v1"
102 #define NS_GOOGLE_JINGLE_INFO "google:jingleinfo"
104 #define NS_GOOGLE_MAIL_NOTIFY "google:mail:notify"
105 #define NS_GOOGLE_ROSTER "google:roster"
107 #define NS_GOOGLE_PROTOCOL_SESSION "http://www.google.com/xmpp/protocol/session"
108 #define NS_GOOGLE_SESSION "http://www.google.com/session"
109 #define NS_GOOGLE_SESSION_PHONE "http://www.google.com/session/phone"
110 #define NS_GOOGLE_SESSION_VIDEO "http://www.google.com/session/video"
112 #define NS_GOOGLE_TRANSPORT_P2P "http://www.google.com/transport/p2p"
114 /* Apple extension(s) */
115 #define NS_APPLE_IDLE "http://www.apple.com/xmpp/idle"
117 #endif /* PURPLE_JABBER_NAMESPACES_H_ */