| author | Smew |
| Sat Nov 28 22:11:06 2009 -0500 (2009-11-28) | |
| changeset 2841 | 7d822254e708 |
| permissions | -rw-r--r-- |
| Smew@2841 | 1 |
/* |
| Smew@2841 | 2 |
* purple - Jabber Protocol Plugin |
| Smew@2841 | 3 |
* |
| Smew@2841 | 4 |
* Purple is the legal property of its developers, whose names are too numerous |
| Smew@2841 | 5 |
* to list here. Please refer to the COPYRIGHT file distributed with this |
| Smew@2841 | 6 |
* source distribution. |
| Smew@2841 | 7 |
* |
| Smew@2841 | 8 |
* This program is free software; you can redistribute it and/or modify |
| Smew@2841 | 9 |
* it under the terms of the GNU General Public License as published by |
| Smew@2841 | 10 |
* the Free Software Foundation; either version 2 of the License, or |
| Smew@2841 | 11 |
* (at your option) any later version. |
| Smew@2841 | 12 |
* |
| Smew@2841 | 13 |
* This program is distributed in the hope that it will be useful, |
| Smew@2841 | 14 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| Smew@2841 | 15 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| Smew@2841 | 16 |
* GNU General Public License for more details. |
| Smew@2841 | 17 |
* |
| Smew@2841 | 18 |
* You should have received a copy of the GNU General Public License |
| Smew@2841 | 19 |
* along with this program; if not, write to the Free Software |
| Smew@2841 | 20 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| Smew@2841 | 21 |
* |
| Smew@2841 | 22 |
*/ |
| Smew@2841 | 23 |
|
| Smew@2841 | 24 |
#ifndef PURPLE_JABBER_NAMESPACES_H_ |
| Smew@2841 | 25 |
#define PURPLE_JABBER_NAMESPACES_H_ |
| Smew@2841 | 26 |
|
| Smew@2841 | 27 |
#define NS_XMPP_BIND "urn:ietf:params:xml:ns:xmpp-bind" |
| Smew@2841 | 28 |
#define NS_XMPP_CLIENT "jabber:client" |
| Smew@2841 | 29 |
#define NS_XMPP_SASL "urn:ietf:params:xml:ns:xmpp-sasl" |
| Smew@2841 | 30 |
#define NS_XMPP_SESSION "urn:ietf:params:xml:ns:xmpp-session" |
| Smew@2841 | 31 |
#define NS_XMPP_STANZAS "urn:ietf:params:xml:ns:xmpp-stanzas" |
| Smew@2841 | 32 |
#define NS_XMPP_STREAMS "http://etherx.jabber.org/streams" |
| Smew@2841 | 33 |
|
| Smew@2841 | 34 |
/* XEP-0012 Last Activity (and XEP-0256 Last Activity in Presence) */ |
| Smew@2841 | 35 |
#define NS_LAST_ACTIVITY "jabber:iq:last" |
| Smew@2841 | 36 |
|
| Smew@2841 | 37 |
/* XEP-0030 Service Discovery */ |
| Smew@2841 | 38 |
#define NS_DISCO_INFO "http://jabber.org/protocol/disco#info" |
| Smew@2841 | 39 |
#define NS_DISCO_ITEMS "http://jabber.org/protocol/disco#items" |
| Smew@2841 | 40 |
|
| Smew@2841 | 41 |
/* XEP-0047 IBB (In-band bytestreams) */ |
| Smew@2841 | 42 |
#define NS_IBB "http://jabber.org/protocol/ibb" |
| Smew@2841 | 43 |
|
| Smew@2841 | 44 |
/* XEP-0065 SOCKS5 Bytestreams */ |
| Smew@2841 | 45 |
#define NS_BYTESTREAMS "http://jabber.org/protocol/bytestreams" |
| Smew@2841 | 46 |
|
| Smew@2841 | 47 |
/* XEP-0066 Out of Band Data (OOB) */ |
| Smew@2841 | 48 |
#define NS_OOB_IQ_DATA "jabber:iq:oob" |
| Smew@2841 | 49 |
#define NS_OOB_X_DATA "jabber:x:oob" |
| Smew@2841 | 50 |
|
| Smew@2841 | 51 |
/* XEP-0071 XHTML-IM (rich-text messages) */ |
| Smew@2841 | 52 |
#define NS_XHTML_IM "http://jabber.org/protocol/xhtml-im" |
| Smew@2841 | 53 |
#define NS_XHTML "http://www.w3.org/1999/xhtml" |
| Smew@2841 | 54 |
|
| Smew@2841 | 55 |
/* XEP-0084 v0.12 User Avatar */ |
| Smew@2841 | 56 |
#define NS_AVATAR_0_12_DATA "http://www.xmpp.org/extensions/xep-0084.html#ns-data" |
| Smew@2841 | 57 |
#define NS_AVATAR_0_12_METADATA "http://www.xmpp.org/extensions/xep-0084.html#ns-metadata" |
| Smew@2841 | 58 |
|
| Smew@2841 | 59 |
/* XEP-0084 v1.1 User Avatar */ |
| Smew@2841 | 60 |
#define NS_AVATAR_1_1_DATA "urn:xmpp:avatar:data" |
| Smew@2841 | 61 |
#define NS_AVATAR_1_1_METADATA "urn:xmpp:avatar:metadata" |
| Smew@2841 | 62 |
|
| Smew@2841 | 63 |
/* XEP-0124 Bidirectional-streams Over Synchronous HTTP (BOSH) */ |
| Smew@2841 | 64 |
#define NS_BOSH "http://jabber.org/protocol/httpbind" |
| Smew@2841 | 65 |
|
| Smew@2841 | 66 |
/* XEP-0191 Simple Communications Blocking */ |
| Smew@2841 | 67 |
#define NS_SIMPLE_BLOCKING "urn:xmpp:blocking" |
| Smew@2841 | 68 |
|
| Smew@2841 | 69 |
/* XEP-0199 Ping */ |
| Smew@2841 | 70 |
#define NS_PING "urn:xmpp:ping" |
| Smew@2841 | 71 |
|
| Smew@2841 | 72 |
/* XEP-0202 Entity Time */ |
| Smew@2841 | 73 |
#define NS_ENTITY_TIME "urn:xmpp:time" |
| Smew@2841 | 74 |
|
| Smew@2841 | 75 |
/* XEP-0203 Delayed Delivery (and legacy delayed delivery) */ |
| Smew@2841 | 76 |
#define NS_DELAYED_DELIVERY "urn:xmpp:delay" |
| Smew@2841 | 77 |
#define NS_DELAYED_DELIVERY_LEGACY "jabber:x:delay" |
| Smew@2841 | 78 |
|
| Smew@2841 | 79 |
/* XEP-0206 XMPP over BOSH */ |
| Smew@2841 | 80 |
#define NS_XMPP_BOSH "urn:xmpp:xbosh" |
| Smew@2841 | 81 |
|
| Smew@2841 | 82 |
/* XEP-0224 Attention */ |
| Smew@2841 | 83 |
#define NS_ATTENTION "urn:xmpp:attention:0" |
| Smew@2841 | 84 |
|
| Smew@2841 | 85 |
/* XEP-0231 BoB (Bits of Binary) */ |
| Smew@2841 | 86 |
#define NS_BOB "urn:xmpp:bob" |
| Smew@2841 | 87 |
|
| Smew@2841 | 88 |
/* Google extensions */ |
| Smew@2841 | 89 |
#define NS_GOOGLE_CAMERA "http://www.google.com/xmpp/protocol/camera/v1" |
| Smew@2841 | 90 |
#define NS_GOOGLE_VIDEO "http://www.google.com/xmpp/protocol/video/v1" |
| Smew@2841 | 91 |
#define NS_GOOGLE_VOICE "http://www.google.com/xmpp/protocol/voice/v1" |
| Smew@2841 | 92 |
#define NS_GOOGLE_JINGLE_INFO "google:jingleinfo" |
| Smew@2841 | 93 |
|
| Smew@2841 | 94 |
#define NS_GOOGLE_MAIL_NOTIFY "google:mail:notify" |
| Smew@2841 | 95 |
|
| Smew@2841 | 96 |
#define NS_GOOGLE_PROTOCOL_SESSION "http://www.google.com/xmpp/protocol/session" |
| Smew@2841 | 97 |
#define NS_GOOGLE_SESSION "http://www.google.com/session" |
| Smew@2841 | 98 |
#define NS_GOOGLE_SESSION_PHONE "http://www.google.com/session/phone" |
| Smew@2841 | 99 |
#define NS_GOOGLE_SESSION_VIDEO "http://www.google.com/session/video" |
| Smew@2841 | 100 |
|
| Smew@2841 | 101 |
#endif /* PURPLE_JABBER_NAMESPACES_H_ */ |