comparison libpurple/protocols/jabber/namespaces.h @ 29027:9feec7d1d95c

jabber: Add the missing file and fix up the Google session namespaces
author Paul Aurich <paul@darkrain42.org>
date Thu, 26 Nov 2009 22:47:53 +0000
parents
children 8d8a1afc4268
comparison
equal deleted inserted replaced
29026:7b4ade7c6d8a 29027:9feec7d1d95c
1 /*
2 * purple - Jabber Protocol Plugin
3 *
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.
7 *
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.
12 *
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.
17 *
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
21 *
22 */
23
24 #ifndef PURPLE_JABBER_NAMESPACES_H_
25 #define PURPLE_JABBER_NAMESPACES_H_
26
27 /* Implementation of XEP-0084 */
28
29 /* XEP-0047 IBB (In-band bytestreams) */
30 #define NS_IBB "http://jabber.org/protocol/ibb"
31
32 /* XEP-0084 v0.12 User Avatar */
33 #define NS_AVATAR_0_12_DATA "http://www.xmpp.org/extensions/xep-0084.html#ns-data"
34 #define NS_AVATAR_0_12_METADATA "http://www.xmpp.org/extensions/xep-0084.html#ns-metadata"
35
36 /* XEP-0084 v1.1 User Avatar */
37 #define NS_AVATAR_1_1_DATA "urn:xmpp:avatar:data"
38 #define NS_AVATAR_1_1_METADATA "urn:xmpp:avatar:metadata"
39
40 /* XEP-0224 Attention */
41 #define NS_ATTENTION "urn:xmpp:attention:0"
42
43 /* XEP-0231 BoB (Bits of Binary) */
44 #define NS_BOB "urn:xmpp:bob"
45
46 /* XEP-???? Ping */
47 #define NS_PING "urn:xmpp:ping"
48
49 /* Google extensions */
50 #define NS_GOOGLE_CAMERA "http://www.google.com/xmpp/protocol/camera/v1"
51 #define NS_GOOGLE_VIDEO "http://www.google.com/xmpp/protocol/video/v1"
52 #define NS_GOOGLE_VOICE "http://www.google.com/xmpp/protocol/voice/v1"
53 #define NS_GOOGLE_JINGLE_INFO "google:jingleinfo"
54
55 #define NS_GOOGLE_PROTOCOL_SESSION "http://www.google.com/xmpp/protocol/session"
56 #define NS_GOOGLE_SESSION "http://www.google.com/session"
57 #define NS_GOOGLE_SESSION_PHONE "http://www.google.com/session/phone"
58 #define NS_GOOGLE_SESSION_VIDEO "http://www.google.com/session/video"
59
60 #endif /* PURPLE_JABBER_NAMESPACES_H_ */