Thu, 09 Apr 2009 04:27:58 +0000
propagate from branch 'im.pidgin.pidgin' (head e715fa3fa4fa07f71af6b63a50988c85144a8e9e)
to branch 'org.darkrain42.pidgin.disco' (head d44a3a6a304682a4929b9214fb50233e8f11f95b)
| 7014 | 1 | /** |
| 2 | * @file jabber.h | |
| 3 | * | |
| 15884 | 4 | * purple |
| 7014 | 5 | * |
| 6 | * Copyright (C) 2003 Nathan Walp <faceprint@faceprint.com> | |
| 2086 | 7 | * |
| 7014 | 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. | |
| 2086 | 12 | * |
| 7014 | 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. | |
| 2086 | 17 | * |
| 7014 | 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 | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
18449
diff
changeset
|
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 2086 | 21 | */ |
|
26703
17f9a4bef2a3
Further standardize the sentinel style (did someone say leading _s are theoretically a reserved namespace?)
Paul Aurich <darkrain42@pidgin.im>
parents:
26692
diff
changeset
|
22 | #ifndef PURPLE_JABBER_H_ |
|
17f9a4bef2a3
Further standardize the sentinel style (did someone say leading _s are theoretically a reserved namespace?)
Paul Aurich <darkrain42@pidgin.im>
parents:
26692
diff
changeset
|
23 | #define PURPLE_JABBER_H_ |
| 2086 | 24 | |
| 7014 | 25 | typedef enum { |
| 8312 | 26 | JABBER_CAP_NONE = 0, |
| 27 | JABBER_CAP_XHTML = 1 << 0, | |
| 28 | JABBER_CAP_COMPOSING = 1 << 1, | |
| 29 | JABBER_CAP_SI = 1 << 2, | |
| 30 | JABBER_CAP_SI_FILE_XFER = 1 << 3, | |
| 31 | JABBER_CAP_BYTESTREAMS = 1 << 4, | |
| 32 | JABBER_CAP_IBB = 1 << 5, | |
| 11393 | 33 | JABBER_CAP_CHAT_STATES = 1 << 6, |
| 11675 | 34 | JABBER_CAP_IQ_SEARCH = 1 << 7, |
| 35 | JABBER_CAP_IQ_REGISTER = 1 << 8, | |
| 15225 | 36 | |
|
19898
218e4bb04853
Fix mingw build of xmpp prpl
Daniel Atallah <datallah@pidgin.im>
parents:
19897
diff
changeset
|
37 | /* Google Talk extensions: |
| 15225 | 38 | * http://code.google.com/apis/talk/jep_extensions/extensions.html |
| 39 | */ | |
| 40 | JABBER_CAP_GMAIL_NOTIFY = 1 << 9, | |
| 15265 | 41 | JABBER_CAP_GOOGLE_ROSTER = 1 << 10, |
| 15225 | 42 | |
|
17779
773326802e26
Fixed whitespace to match the coding convention used in libpurple
Andreas Monitzer <am@adiumx.com>
parents:
17773
diff
changeset
|
43 | JABBER_CAP_PING = 1 << 11, |
|
17816
1b7362b4a7a2
Implemented ad-hoc commands for the buddy action menu (untested), implemented the receiving end of XEP-0115: Entity Capabilities. Note that this seems not to be reliable right now, since some clients seem to have a very broken [read: completely non-functional] implementation (most notably Gajim and the py-transports).
Andreas Monitzer <am@adiumx.com>
parents:
17815
diff
changeset
|
44 | JABBER_CAP_ADHOC = 1 << 12, |
|
25290
033942580f51
Commit patch #7670: Implement xep-0191 (simple blocking) for jabber protocols
Mark Doliner <markdoliner@pidgin.im>
parents:
24012
diff
changeset
|
45 | JABBER_CAP_BLOCKING = 1 << 13, |
|
033942580f51
Commit patch #7670: Implement xep-0191 (simple blocking) for jabber protocols
Mark Doliner <markdoliner@pidgin.im>
parents:
24012
diff
changeset
|
46 | |
|
26583
e115c7ef2fcf
Applied disco-2.patch from nops with some modifications:
Paul Aurich <darkrain42@pidgin.im>
parents:
26042
diff
changeset
|
47 | JABBER_CAP_ITEMS = 1 << 14, |
|
e115c7ef2fcf
Applied disco-2.patch from nops with some modifications:
Paul Aurich <darkrain42@pidgin.im>
parents:
26042
diff
changeset
|
48 | |
| 8312 | 49 | JABBER_CAP_RETRIEVED = 1 << 31 |
| 50 | } JabberCapabilities; | |
| 51 | ||
|
17800
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
52 | typedef struct _JabberStream JabberStream; |
|
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
53 | |
| 13808 | 54 | #include <libxml/parser.h> |
| 7014 | 55 | #include <glib.h> |
|
14013
86dac5633bd9
[gaim-migrate @ 16496]
Mark Doliner <markdoliner@pidgin.im>
parents:
13808
diff
changeset
|
56 | #include "circbuffer.h" |
| 7014 | 57 | #include "connection.h" |
|
26741
3e50f27057d5
propagate from branch 'im.pidgin.pidgin' (head e715fa3fa4fa07f71af6b63a50988c85144a8e9e)
Paul Aurich <darkrain42@pidgin.im>
diff
changeset
|
58 | #include "dnsquery.h" |
|
14370
12ef3d4096ee
[gaim-migrate @ 16998]
Mark Doliner <markdoliner@pidgin.im>
parents:
14324
diff
changeset
|
59 | #include "dnssrv.h" |
|
26106
afdca955b6f4
propagate from branch 'im.pidgin.pidgin' (head 0cff24bf7dbab39c8efd9ae15752966bda375780)
Michael Ruprecht <maiku@pidgin.im>
diff
changeset
|
60 | #include "media.h" |
|
afdca955b6f4
propagate from branch 'im.pidgin.pidgin' (head 0cff24bf7dbab39c8efd9ae15752966bda375780)
Michael Ruprecht <maiku@pidgin.im>
diff
changeset
|
61 | #include "mediamanager.h" |
| 8113 | 62 | #include "roomlist.h" |
| 7014 | 63 | #include "sslconn.h" |
| 2086 | 64 | |
|
25817
09d6a40a341d
Pass IQ handlers type, from, id, and the child node
Paul Aurich <darkrain42@pidgin.im>
parents:
25290
diff
changeset
|
65 | #include "iq.h" |
| 7014 | 66 | #include "jutil.h" |
| 67 | #include "xmlnode.h" | |
|
17800
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
68 | #include "buddy.h" |
| 2086 | 69 | |
| 12508 | 70 | #ifdef HAVE_CYRUS_SASL |
| 71 | #include <sasl/sasl.h> | |
| 72 | #endif | |
| 73 | ||
| 16066 | 74 | #define CAPS0115_NODE "http://pidgin.im/caps" |
| 13385 | 75 | |
|
20401
8aaa593a6269
Comment a partial implementation of the libpurple attention API for
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19898
diff
changeset
|
76 | /* Index into attention_types list */ |
|
8aaa593a6269
Comment a partial implementation of the libpurple attention API for
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19898
diff
changeset
|
77 | #define JABBER_BUZZ 0 |
|
8aaa593a6269
Comment a partial implementation of the libpurple attention API for
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19898
diff
changeset
|
78 | |
| 8312 | 79 | typedef enum { |
| 7014 | 80 | JABBER_STREAM_OFFLINE, |
| 81 | JABBER_STREAM_CONNECTING, | |
| 82 | JABBER_STREAM_INITIALIZING, | |
|
17813
c5cc8ebf62c0
Introduced an additional connection stage to the jabber connection progress in order to be able to tell in the application, whether SSL/TLS is enabled, so it can display a lock icon next to the connection.
Andreas Monitzer <am@adiumx.com>
parents:
17806
diff
changeset
|
83 | JABBER_STREAM_INITIALIZING_ENCRYPTION, |
| 7014 | 84 | JABBER_STREAM_AUTHENTICATING, |
| 85 | JABBER_STREAM_REINITIALIZING, | |
| 86 | JABBER_STREAM_CONNECTED | |
| 87 | } JabberStreamState; | |
| 2086 | 88 | |
|
17800
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
89 | struct _JabberStream |
| 2086 | 90 | { |
| 7014 | 91 | int fd; |
| 2086 | 92 | |
| 15884 | 93 | PurpleSrvQueryData *srv_query_data; |
|
14175
2bc5a80c5071
[gaim-migrate @ 16747]
Mark Doliner <markdoliner@pidgin.im>
parents:
14062
diff
changeset
|
94 | |
| 13808 | 95 | xmlParserCtxt *context; |
| 7014 | 96 | xmlnode *current; |
| 2086 | 97 | |
| 7014 | 98 | enum { |
| 99 | JABBER_PROTO_0_9, | |
| 100 | JABBER_PROTO_1_0 | |
| 101 | } protocol_version; | |
| 7291 | 102 | enum { |
| 8296 | 103 | JABBER_AUTH_UNKNOWN, |
| 7291 | 104 | JABBER_AUTH_DIGEST_MD5, |
| 8296 | 105 | JABBER_AUTH_PLAIN, |
| 12508 | 106 | JABBER_AUTH_IQ_AUTH, |
| 107 | JABBER_AUTH_CYRUS | |
| 7291 | 108 | } auth_type; |
| 7014 | 109 | char *stream_id; |
| 110 | JabberStreamState state; | |
| 2086 | 111 | |
| 7014 | 112 | /* SASL authentication */ |
| 113 | char *expected_rspauth; | |
| 2086 | 114 | |
| 7014 | 115 | GHashTable *buddies; |
| 116 | gboolean roster_parsed; | |
| 2086 | 117 | |
|
23975
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
118 | /* |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
119 | * This boolean was added to eliminate a heinous bug where we would |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
120 | * get into a loop with the server and move a buddy back and forth |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
121 | * from one group to another. |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
122 | * |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
123 | * The sequence goes something like this: |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
124 | * 1. Our resource and another resource both approve an authorization |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
125 | * request at the exact same time. We put the buddy in group A and |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
126 | * the other resource put the buddy in group B. |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
127 | * 2. The server receives the roster add for group B and sends us a |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
128 | * roster push. |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
129 | * 3. We receive this roster push and modify our local blist. This |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
130 | * triggers us to send a roster add for group B. |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
131 | * 4. The server recieves our earlier roster add for group A and sends |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
132 | * us a roster push. |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
133 | * 5. We receive this roster push and modify our local blist. This |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
134 | * triggers us to send a roster add for group A. |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
135 | * 6. The server receives our earlier roster add for group B and sends |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
136 | * us a roster push. |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
137 | * (repeat steps 3 through 6 ad infinitum) |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
138 | * |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
139 | * This boolean is used to short-circuit the sending of a roster add |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
140 | * when we receive a roster push. |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
141 | * |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
142 | * See these bug reports: |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
143 | * http://trac.adiumx.com/ticket/8834 |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
144 | * http://developer.pidgin.im/ticket/5484 |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
145 | * http://developer.pidgin.im/ticket/6188 |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
146 | */ |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
147 | gboolean currently_parsing_roster_push; |
|
8ee397f04ca9
We talked about this and decided it was probably cleaner to not use
Mark Doliner <markdoliner@pidgin.im>
parents:
23910
diff
changeset
|
148 | |
| 7014 | 149 | GHashTable *chats; |
| 8043 | 150 | GList *chat_servers; |
| 15884 | 151 | PurpleRoomlist *roomlist; |
| 11675 | 152 | GList *user_directories; |
| 2086 | 153 | |
| 8312 | 154 | GHashTable *iq_callbacks; |
| 155 | GHashTable *disco_callbacks; | |
| 7014 | 156 | int next_id; |
| 2086 | 157 | |
|
21688
a16385b34219
Implement more of XEP-0065 to support sending files through a proxy. To avoid adding strings this close to a release, it only supports using a proxy that is discovered from the server, but we'll include an account option to manually specify a ft proxy in the next release. Lots of this is based on a patch from galt - Fixes #3730, #116, #1768
Daniel Atallah <datallah@pidgin.im>
parents:
21279
diff
changeset
|
158 | GList *bs_proxies; |
| 7395 | 159 | GList *oob_file_transfers; |
| 7170 | 160 | GList *file_transfers; |
| 161 | ||
|
14453
1cc75906700c
[gaim-migrate @ 17098]
Mark Doliner <markdoliner@pidgin.im>
parents:
14375
diff
changeset
|
162 | time_t idle; |
|
1cc75906700c
[gaim-migrate @ 17098]
Mark Doliner <markdoliner@pidgin.im>
parents:
14375
diff
changeset
|
163 | |
| 7014 | 164 | JabberID *user; |
| 15884 | 165 | PurpleConnection *gc; |
| 166 | PurpleSslConnection *gsc; | |
| 7072 | 167 | |
| 168 | gboolean registration; | |
| 10189 | 169 | |
| 170 | char *avatar_hash; | |
| 10941 | 171 | GSList *pending_avatar_requests; |
| 12508 | 172 | |
|
15363
f6b9d1e3d0cb
[gaim-migrate @ 18092]
Evan Schoenberg <evands@pidgin.im>
parents:
15265
diff
changeset
|
173 | GSList *pending_buddy_info_requests; |
|
15800
2d0ec4fe2681
pass the correct domain to cyrus sasl (sf patch 1663064)
Nathan Walp <nwalp@pidgin.im>
parents:
15435
diff
changeset
|
174 | |
| 15884 | 175 | PurpleCircBuffer *write_buffer; |
|
13201
8c224ef70efa
[gaim-migrate @ 15563]
Daniel Atallah <datallah@pidgin.im>
parents:
12508
diff
changeset
|
176 | guint writeh; |
|
8c224ef70efa
[gaim-migrate @ 15563]
Daniel Atallah <datallah@pidgin.im>
parents:
12508
diff
changeset
|
177 | |
| 14062 | 178 | gboolean reinit; |
| 179 | ||
| 15225 | 180 | JabberCapabilities server_caps; |
| 15197 | 181 | gboolean googletalk; |
| 182 | char *server_name; | |
|
15800
2d0ec4fe2681
pass the correct domain to cyrus sasl (sf patch 1663064)
Nathan Walp <nwalp@pidgin.im>
parents:
15435
diff
changeset
|
183 | |
| 15225 | 184 | char *gmail_last_time; |
| 185 | char *gmail_last_tid; | |
| 15197 | 186 | |
|
21688
a16385b34219
Implement more of XEP-0065 to support sending files through a proxy. To avoid adding strings this close to a release, it only supports using a proxy that is discovered from the server, but we'll include an account option to manually specify a ft proxy in the next release. Lots of this is based on a patch from galt - Fixes #3730, #116, #1768
Daniel Atallah <datallah@pidgin.im>
parents:
21279
diff
changeset
|
187 | char *serverFQDN; |
|
18449
2d2df64f4303
applied changes from f9186fabb483b56a9d7e8fb7241b2520e9930413
William Ehlhardt <williamehlhardt@gmail.com>
parents:
18235
diff
changeset
|
188 | |
| 12508 | 189 | /* OK, this stays at the end of the struct, so plugins can depend |
| 190 | * on the rest of the stuff being in the right place | |
| 191 | */ | |
| 192 | #ifdef HAVE_CYRUS_SASL | |
| 193 | sasl_conn_t *sasl; | |
| 194 | sasl_callback_t *sasl_cb; | |
|
18235
60a9bd99f035
server-side jabber vcards now take precedence over local vcards, so
Nathan Walp <nwalp@pidgin.im>
parents:
16302
diff
changeset
|
195 | #else /* keep the struct the same size */ |
|
60a9bd99f035
server-side jabber vcards now take precedence over local vcards, so
Nathan Walp <nwalp@pidgin.im>
parents:
16302
diff
changeset
|
196 | void *sasl; |
|
60a9bd99f035
server-side jabber vcards now take precedence over local vcards, so
Nathan Walp <nwalp@pidgin.im>
parents:
16302
diff
changeset
|
197 | void *sasl_cb; |
|
60a9bd99f035
server-side jabber vcards now take precedence over local vcards, so
Nathan Walp <nwalp@pidgin.im>
parents:
16302
diff
changeset
|
198 | #endif |
|
22800
0288a22eb85a
The next version of RFC 3920, the draft of which can be found at http://www.xmpp.org/internet-drafts/draft-saintandre-rfc3920bis-04.html, and subsequent email clarifications with Peter Saint-Andre and Alexey Melnikov indicate that we should be trying the next mechanism in line after one mechanism fails. We should also be ensuring that the mech list is sorted in order of descending security, which we don't do yet; however, servers are supposed to send us a sorted list, as well, so this isn't a major issue.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22155
diff
changeset
|
199 | /* did someone say something about the end of the struct? */ |
|
0288a22eb85a
The next version of RFC 3920, the draft of which can be found at http://www.xmpp.org/internet-drafts/draft-saintandre-rfc3920bis-04.html, and subsequent email clarifications with Peter Saint-Andre and Alexey Melnikov indicate that we should be trying the next mechanism in line after one mechanism fails. We should also be ensuring that the mech list is sorted in order of descending security, which we don't do yet; however, servers are supposed to send us a sorted list, as well, so this isn't a major issue.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22155
diff
changeset
|
200 | #ifdef HAVE_CYRUS_SASL |
|
0288a22eb85a
The next version of RFC 3920, the draft of which can be found at http://www.xmpp.org/internet-drafts/draft-saintandre-rfc3920bis-04.html, and subsequent email clarifications with Peter Saint-Andre and Alexey Melnikov indicate that we should be trying the next mechanism in line after one mechanism fails. We should also be ensuring that the mech list is sorted in order of descending security, which we don't do yet; however, servers are supposed to send us a sorted list, as well, so this isn't a major issue.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22155
diff
changeset
|
201 | const char *current_mech; |
|
0288a22eb85a
The next version of RFC 3920, the draft of which can be found at http://www.xmpp.org/internet-drafts/draft-saintandre-rfc3920bis-04.html, and subsequent email clarifications with Peter Saint-Andre and Alexey Melnikov indicate that we should be trying the next mechanism in line after one mechanism fails. We should also be ensuring that the mech list is sorted in order of descending security, which we don't do yet; however, servers are supposed to send us a sorted list, as well, so this isn't a major issue.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22155
diff
changeset
|
202 | int auth_fail_count; |
|
0288a22eb85a
The next version of RFC 3920, the draft of which can be found at http://www.xmpp.org/internet-drafts/draft-saintandre-rfc3920bis-04.html, and subsequent email clarifications with Peter Saint-Andre and Alexey Melnikov indicate that we should be trying the next mechanism in line after one mechanism fails. We should also be ensuring that the mech list is sorted in order of descending security, which we don't do yet; however, servers are supposed to send us a sorted list, as well, so this isn't a major issue.
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
22155
diff
changeset
|
203 | #endif |
|
18235
60a9bd99f035
server-side jabber vcards now take precedence over local vcards, so
Nathan Walp <nwalp@pidgin.im>
parents:
16302
diff
changeset
|
204 | |
| 12508 | 205 | int sasl_state; |
| 206 | int sasl_maxbuf; | |
| 207 | GString *sasl_mechs; | |
|
18235
60a9bd99f035
server-side jabber vcards now take precedence over local vcards, so
Nathan Walp <nwalp@pidgin.im>
parents:
16302
diff
changeset
|
208 | |
|
18912
606597744812
Added unregistering XMPP accounts. This requires a new prpl-struct entry, but I got an ok for that on the mailing list.
Andreas Monitzer <am@adiumx.com>
parents:
18719
diff
changeset
|
209 | gboolean unregistration; |
|
18994
310e9d853e2b
Implemented a callback for unregistering, mirroring the registration callback. Since this is a new API, I can do it properly by passing it right in the unregister function call, instead of having a separate function for setting it.
Andreas Monitzer <am@adiumx.com>
parents:
18912
diff
changeset
|
210 | PurpleAccountUnregistrationCb unregistration_cb; |
|
310e9d853e2b
Implemented a callback for unregistering, mirroring the registration callback. Since this is a new API, I can do it properly by passing it right in the unregister function call, instead of having a separate function for setting it.
Andreas Monitzer <am@adiumx.com>
parents:
18912
diff
changeset
|
211 | void *unregistration_user_data; |
|
26042
4dabdb5fe213
Remove some extra trailing whitespace I noticed after merging mlundblad's
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
25290
diff
changeset
|
212 | |
|
18235
60a9bd99f035
server-side jabber vcards now take precedence over local vcards, so
Nathan Walp <nwalp@pidgin.im>
parents:
16302
diff
changeset
|
213 | gboolean vcard_fetched; |
| 12508 | 214 | |
|
17779
773326802e26
Fixed whitespace to match the coding convention used in libpurple
Andreas Monitzer <am@adiumx.com>
parents:
17773
diff
changeset
|
215 | /* does the local server support PEP? */ |
|
773326802e26
Fixed whitespace to match the coding convention used in libpurple
Andreas Monitzer <am@adiumx.com>
parents:
17773
diff
changeset
|
216 | gboolean pep; |
| 2086 | 217 | |
|
17824
52683dfc1f7d
Added the option to enable/disable buzz via a status setting. It's default off for the pidgin folks.
Andreas Monitzer <am@adiumx.com>
parents:
17817
diff
changeset
|
218 | /* Is Buzz enabled? */ |
|
52683dfc1f7d
Added the option to enable/disable buzz via a status setting. It's default off for the pidgin folks.
Andreas Monitzer <am@adiumx.com>
parents:
17817
diff
changeset
|
219 | gboolean allowBuzz; |
|
26042
4dabdb5fe213
Remove some extra trailing whitespace I noticed after merging mlundblad's
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
25290
diff
changeset
|
220 | |
|
17817
8e0f271aab78
The server's ad-hoc commands are now listed in the account's action menu. Note that this requires an additional field in the _PurplePluginAction struct. There's no other way, since there was no way to supply user_data, and dynamically created functions are not supported by C. This should be fine, since that struct is only malloced in purple_plugin_action_new, which is part of the core. Applications have to either pass the struct unmodified, or restore the user_data pointer if the action is recreated when necessary (as is the case in Adium).
Andreas Monitzer <am@adiumx.com>
parents:
17816
diff
changeset
|
221 | /* A list of JabberAdHocCommands supported by the server */ |
|
8e0f271aab78
The server's ad-hoc commands are now listed in the account's action menu. Note that this requires an additional field in the _PurplePluginAction struct. There's no other way, since there was no way to supply user_data, and dynamically created functions are not supported by C. This should be fine, since that struct is only malloced in purple_plugin_action_new, which is part of the core. Applications have to either pass the struct unmodified, or restore the user_data pointer if the action is recreated when necessary (as is the case in Adium).
Andreas Monitzer <am@adiumx.com>
parents:
17816
diff
changeset
|
222 | GList *commands; |
|
26042
4dabdb5fe213
Remove some extra trailing whitespace I noticed after merging mlundblad's
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
25290
diff
changeset
|
223 | |
|
17800
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
224 | /* last presence update to check for differences */ |
|
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
225 | JabberBuddyState old_state; |
|
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
226 | char *old_msg; |
|
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
227 | int old_priority; |
|
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
228 | char *old_avatarhash; |
|
26042
4dabdb5fe213
Remove some extra trailing whitespace I noticed after merging mlundblad's
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
25290
diff
changeset
|
229 | |
|
17800
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
230 | /* same for user tune */ |
|
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
231 | char *old_artist; |
|
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
232 | char *old_title; |
|
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
233 | char *old_source; |
|
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
234 | char *old_uri; |
|
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
235 | int old_length; |
|
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
236 | char *old_track; |
|
26042
4dabdb5fe213
Remove some extra trailing whitespace I noticed after merging mlundblad's
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
25290
diff
changeset
|
237 | |
|
22155
7c2034388bdb
Now checking the hostname supplied by the user, or the host-part of the JID when no host name is given against the CN of the domain. This makes libpurple comply to the RFC. Fixes http://trac.adiumx.com/ticket/8787
Andreas Monitzer <am@adiumx.com>
parents:
22096
diff
changeset
|
238 | char *certificate_CN; |
|
26042
4dabdb5fe213
Remove some extra trailing whitespace I noticed after merging mlundblad's
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
25290
diff
changeset
|
239 | |
|
22096
0d28b254d322
Keep track of the keepalive timeout source so it can be removed when the account disconnects. This prevents a possible crash if the timeout fired after the account disconnected.
Evan Schoenberg <evands@pidgin.im>
parents:
21929
diff
changeset
|
240 | /* A purple timeout tag for the keepalive */ |
|
0d28b254d322
Keep track of the keepalive timeout source so it can be removed when the account disconnects. This prevents a possible crash if the timeout fired after the account disconnected.
Evan Schoenberg <evands@pidgin.im>
parents:
21929
diff
changeset
|
241 | int keepalive_timeout; |
|
23910
f8989c154a60
Add support for using multiple "xmpp-client" records on a domain, by trying the
Daniel Atallah <datallah@pidgin.im>
parents:
22800
diff
changeset
|
242 | |
|
f8989c154a60
Add support for using multiple "xmpp-client" records on a domain, by trying the
Daniel Atallah <datallah@pidgin.im>
parents:
22800
diff
changeset
|
243 | PurpleSrvResponse *srv_rec; |
|
f8989c154a60
Add support for using multiple "xmpp-client" records on a domain, by trying the
Daniel Atallah <datallah@pidgin.im>
parents:
22800
diff
changeset
|
244 | guint srv_rec_idx; |
|
f8989c154a60
Add support for using multiple "xmpp-client" records on a domain, by trying the
Daniel Atallah <datallah@pidgin.im>
parents:
22800
diff
changeset
|
245 | guint max_srv_rec_idx; |
|
24012
913d6f18cb95
Restrict buddy icon downloads from arbitrary urls to 200kB.
Daniel Atallah <datallah@pidgin.im>
parents:
23975
diff
changeset
|
246 | /** |
|
913d6f18cb95
Restrict buddy icon downloads from arbitrary urls to 200kB.
Daniel Atallah <datallah@pidgin.im>
parents:
23975
diff
changeset
|
247 | * This linked list contains PurpleUtilFetchUrlData structs |
|
913d6f18cb95
Restrict buddy icon downloads from arbitrary urls to 200kB.
Daniel Atallah <datallah@pidgin.im>
parents:
23975
diff
changeset
|
248 | * for when we lookup buddy icons from a url |
|
913d6f18cb95
Restrict buddy icon downloads from arbitrary urls to 200kB.
Daniel Atallah <datallah@pidgin.im>
parents:
23975
diff
changeset
|
249 | */ |
|
913d6f18cb95
Restrict buddy icon downloads from arbitrary urls to 200kB.
Daniel Atallah <datallah@pidgin.im>
parents:
23975
diff
changeset
|
250 | GSList *url_datas; |
|
26583
e115c7ef2fcf
Applied disco-2.patch from nops with some modifications:
Paul Aurich <darkrain42@pidgin.im>
parents:
26042
diff
changeset
|
251 | |
|
23698
0815965bd80b
Moved jingle.c global variable "sessions" into JabberStream.
Michael Ruprecht <maiku@pidgin.im>
parents:
23696
diff
changeset
|
252 | /* keep a hash table of JingleSessions */ |
|
0815965bd80b
Moved jingle.c global variable "sessions" into JabberStream.
Michael Ruprecht <maiku@pidgin.im>
parents:
23696
diff
changeset
|
253 | GHashTable *sessions; |
|
26286
443041606e32
Add automatic discovery of GTalk STUN servers when using a Gtalk account
Marcus Lundblad <malu@pidgin.im>
parents:
26215
diff
changeset
|
254 | |
|
443041606e32
Add automatic discovery of GTalk STUN servers when using a Gtalk account
Marcus Lundblad <malu@pidgin.im>
parents:
26215
diff
changeset
|
255 | /* maybe this should only be present when USE_VV? */ |
|
443041606e32
Add automatic discovery of GTalk STUN servers when using a Gtalk account
Marcus Lundblad <malu@pidgin.im>
parents:
26215
diff
changeset
|
256 | gchar *stun_ip; |
|
443041606e32
Add automatic discovery of GTalk STUN servers when using a Gtalk account
Marcus Lundblad <malu@pidgin.im>
parents:
26215
diff
changeset
|
257 | int stun_port; |
|
443041606e32
Add automatic discovery of GTalk STUN servers when using a Gtalk account
Marcus Lundblad <malu@pidgin.im>
parents:
26215
diff
changeset
|
258 | PurpleDnsQueryData *stun_query; |
|
443041606e32
Add automatic discovery of GTalk STUN servers when using a Gtalk account
Marcus Lundblad <malu@pidgin.im>
parents:
26215
diff
changeset
|
259 | /* later add stuff to handle TURN relays... */ |
|
26741
3e50f27057d5
propagate from branch 'im.pidgin.pidgin' (head e715fa3fa4fa07f71af6b63a50988c85144a8e9e)
Paul Aurich <darkrain42@pidgin.im>
diff
changeset
|
260 | |
|
26583
e115c7ef2fcf
Applied disco-2.patch from nops with some modifications:
Paul Aurich <darkrain42@pidgin.im>
parents:
26042
diff
changeset
|
261 | /** |
|
e115c7ef2fcf
Applied disco-2.patch from nops with some modifications:
Paul Aurich <darkrain42@pidgin.im>
parents:
26042
diff
changeset
|
262 | * The last server the user disco'd (or NULL) via the server discovery |
|
e115c7ef2fcf
Applied disco-2.patch from nops with some modifications:
Paul Aurich <darkrain42@pidgin.im>
parents:
26042
diff
changeset
|
263 | * API. |
|
e115c7ef2fcf
Applied disco-2.patch from nops with some modifications:
Paul Aurich <darkrain42@pidgin.im>
parents:
26042
diff
changeset
|
264 | */ |
|
e115c7ef2fcf
Applied disco-2.patch from nops with some modifications:
Paul Aurich <darkrain42@pidgin.im>
parents:
26042
diff
changeset
|
265 | char *last_disco_server; |
|
17800
39a0f9ed0e26
Replaced a clean and simple API with a very weird hack due to vivid request on #pidgin by multiple devs. This avoids the change in PurplePluginProtocolInfo, but requires complicated change tracking in every prpl. The others prpl should add this change tracking, too (since otherwise the status gets changed even though nothing they care about changed), but that's not up to me.
Andreas Monitzer <am@adiumx.com>
parents:
17783
diff
changeset
|
266 | }; |
| 12508 | 267 | |
|
17783
2687df1ca202
PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Andreas Monitzer <am@adiumx.com>
parents:
17779
diff
changeset
|
268 | typedef gboolean (JabberFeatureEnabled)(JabberStream *js, const gchar *shortname, const gchar *namespace); |
| 2086 | 269 | |
|
17783
2687df1ca202
PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Andreas Monitzer <am@adiumx.com>
parents:
17779
diff
changeset
|
270 | typedef struct _JabberFeature |
|
2687df1ca202
PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Andreas Monitzer <am@adiumx.com>
parents:
17779
diff
changeset
|
271 | { |
|
2687df1ca202
PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Andreas Monitzer <am@adiumx.com>
parents:
17779
diff
changeset
|
272 | gchar *shortname; |
|
2687df1ca202
PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Andreas Monitzer <am@adiumx.com>
parents:
17779
diff
changeset
|
273 | gchar *namespace; |
|
2687df1ca202
PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Andreas Monitzer <am@adiumx.com>
parents:
17779
diff
changeset
|
274 | JabberFeatureEnabled *is_enabled; |
|
2687df1ca202
PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Andreas Monitzer <am@adiumx.com>
parents:
17779
diff
changeset
|
275 | } JabberFeature; |
|
2687df1ca202
PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Andreas Monitzer <am@adiumx.com>
parents:
17779
diff
changeset
|
276 | |
|
21688
a16385b34219
Implement more of XEP-0065 to support sending files through a proxy. To avoid adding strings this close to a release, it only supports using a proxy that is discovered from the server, but we'll include an account option to manually specify a ft proxy in the next release. Lots of this is based on a patch from galt - Fixes #3730, #116, #1768
Daniel Atallah <datallah@pidgin.im>
parents:
21279
diff
changeset
|
277 | typedef struct _JabberBytestreamsStreamhost { |
|
a16385b34219
Implement more of XEP-0065 to support sending files through a proxy. To avoid adding strings this close to a release, it only supports using a proxy that is discovered from the server, but we'll include an account option to manually specify a ft proxy in the next release. Lots of this is based on a patch from galt - Fixes #3730, #116, #1768
Daniel Atallah <datallah@pidgin.im>
parents:
21279
diff
changeset
|
278 | char *jid; |
|
a16385b34219
Implement more of XEP-0065 to support sending files through a proxy. To avoid adding strings this close to a release, it only supports using a proxy that is discovered from the server, but we'll include an account option to manually specify a ft proxy in the next release. Lots of this is based on a patch from galt - Fixes #3730, #116, #1768
Daniel Atallah <datallah@pidgin.im>
parents:
21279
diff
changeset
|
279 | char *host; |
|
a16385b34219
Implement more of XEP-0065 to support sending files through a proxy. To avoid adding strings this close to a release, it only supports using a proxy that is discovered from the server, but we'll include an account option to manually specify a ft proxy in the next release. Lots of this is based on a patch from galt - Fixes #3730, #116, #1768
Daniel Atallah <datallah@pidgin.im>
parents:
21279
diff
changeset
|
280 | int port; |
|
a16385b34219
Implement more of XEP-0065 to support sending files through a proxy. To avoid adding strings this close to a release, it only supports using a proxy that is discovered from the server, but we'll include an account option to manually specify a ft proxy in the next release. Lots of this is based on a patch from galt - Fixes #3730, #116, #1768
Daniel Atallah <datallah@pidgin.im>
parents:
21279
diff
changeset
|
281 | char *zeroconf; |
|
a16385b34219
Implement more of XEP-0065 to support sending files through a proxy. To avoid adding strings this close to a release, it only supports using a proxy that is discovered from the server, but we'll include an account option to manually specify a ft proxy in the next release. Lots of this is based on a patch from galt - Fixes #3730, #116, #1768
Daniel Atallah <datallah@pidgin.im>
parents:
21279
diff
changeset
|
282 | } JabberBytestreamsStreamhost; |
|
a16385b34219
Implement more of XEP-0065 to support sending files through a proxy. To avoid adding strings this close to a release, it only supports using a proxy that is discovered from the server, but we'll include an account option to manually specify a ft proxy in the next release. Lots of this is based on a patch from galt - Fixes #3730, #116, #1768
Daniel Atallah <datallah@pidgin.im>
parents:
21279
diff
changeset
|
283 | |
|
17783
2687df1ca202
PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Andreas Monitzer <am@adiumx.com>
parents:
17779
diff
changeset
|
284 | /* what kind of additional features as returned from disco#info are supported? */ |
|
2687df1ca202
PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Andreas Monitzer <am@adiumx.com>
parents:
17779
diff
changeset
|
285 | extern GList *jabber_features; |
|
2687df1ca202
PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Andreas Monitzer <am@adiumx.com>
parents:
17779
diff
changeset
|
286 | |
|
17828
6957bf9d7330
Fixed a bug in the XMPP parser involving event handlers that replace the xmlnode packet. This caused double frees in this situation. The replacing function must free the xmlnode, since multiple event handlers could do this, and the intermediate xml trees would leak otherwise.
Andreas Monitzer <am@adiumx.com>
parents:
17824
diff
changeset
|
287 | void jabber_process_packet(JabberStream *js, xmlnode **packet); |
| 7014 | 288 | void jabber_send(JabberStream *js, xmlnode *data); |
| 7642 | 289 | void jabber_send_raw(JabberStream *js, const char *data, int len); |
| 2086 | 290 | |
| 7014 | 291 | void jabber_stream_set_state(JabberStream *js, JabberStreamState state); |
| 2086 | 292 | |
|
25817
09d6a40a341d
Pass IQ handlers type, from, id, and the child node
Paul Aurich <darkrain42@pidgin.im>
parents:
25290
diff
changeset
|
293 | void jabber_register_parse(JabberStream *js, const char *from, |
|
09d6a40a341d
Pass IQ handlers type, from, id, and the child node
Paul Aurich <darkrain42@pidgin.im>
parents:
25290
diff
changeset
|
294 | JabberIqType type, const char *id, xmlnode *query); |
| 8016 | 295 | void jabber_register_start(JabberStream *js); |
| 7077 | 296 | |
| 7014 | 297 | char *jabber_get_next_id(JabberStream *js); |
| 2086 | 298 | |
|
21150
bedd1215fb5e
Stop jabber setting wants_to_die itself. This involved plumbing disconnection
Will Thompson <resiak@pidgin.im>
parents:
20401
diff
changeset
|
299 | /** Parse an error into a human-readable string and optionally a disconnect |
|
bedd1215fb5e
Stop jabber setting wants_to_die itself. This involved plumbing disconnection
Will Thompson <resiak@pidgin.im>
parents:
20401
diff
changeset
|
300 | * reason. |
|
bedd1215fb5e
Stop jabber setting wants_to_die itself. This involved plumbing disconnection
Will Thompson <resiak@pidgin.im>
parents:
20401
diff
changeset
|
301 | * @param js the stream on which the error occurred. |
|
bedd1215fb5e
Stop jabber setting wants_to_die itself. This involved plumbing disconnection
Will Thompson <resiak@pidgin.im>
parents:
20401
diff
changeset
|
302 | * @param packet the error packet |
|
bedd1215fb5e
Stop jabber setting wants_to_die itself. This involved plumbing disconnection
Will Thompson <resiak@pidgin.im>
parents:
20401
diff
changeset
|
303 | * @param reason where to store the disconnection reason, or @c NULL if you |
|
bedd1215fb5e
Stop jabber setting wants_to_die itself. This involved plumbing disconnection
Will Thompson <resiak@pidgin.im>
parents:
20401
diff
changeset
|
304 | * don't care or you don't intend to close the connection. |
|
bedd1215fb5e
Stop jabber setting wants_to_die itself. This involved plumbing disconnection
Will Thompson <resiak@pidgin.im>
parents:
20401
diff
changeset
|
305 | */ |
| 21279 | 306 | char *jabber_parse_error(JabberStream *js, xmlnode *packet, PurpleConnectionError *reason); |
| 8401 | 307 | |
|
17783
2687df1ca202
PEP publishing features are now only announced in disco#info when PEP is supported by the server.
Andreas Monitzer <am@adiumx.com>
parents:
17779
diff
changeset
|
308 | void jabber_add_feature(const gchar *shortname, const gchar *namespace, JabberFeatureEnabled cb); /* cb may be NULL */ |
|
17773
6956b763b3d1
Implemented adding callbacks for PEP events. Moved the feature list to be application-global instead of per-connection (makes more sense).
Andreas Monitzer <am@adiumx.com>
parents:
17770
diff
changeset
|
309 | void jabber_remove_feature(const gchar *shortname); |
|
17770
e67998927a3c
Added the ability to define extensions to caps
Andreas Monitzer <am@adiumx.com>
parents:
17769
diff
changeset
|
310 | |
|
16302
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
311 | /** PRPL functions */ |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
312 | const char *jabber_list_icon(PurpleAccount *a, PurpleBuddy *b); |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
313 | const char* jabber_list_emblem(PurpleBuddy *b); |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
314 | char *jabber_status_text(PurpleBuddy *b); |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
315 | void jabber_tooltip_text(PurpleBuddy *b, PurpleNotifyUserInfo *user_info, gboolean full); |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
316 | GList *jabber_status_types(PurpleAccount *account); |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
317 | void jabber_login(PurpleAccount *account); |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
318 | void jabber_close(PurpleConnection *gc); |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
319 | void jabber_idle_set(PurpleConnection *gc, int idle); |
|
25290
033942580f51
Commit patch #7670: Implement xep-0191 (simple blocking) for jabber protocols
Mark Doliner <markdoliner@pidgin.im>
parents:
24012
diff
changeset
|
320 | void jabber_request_block_list(JabberStream *js); |
|
033942580f51
Commit patch #7670: Implement xep-0191 (simple blocking) for jabber protocols
Mark Doliner <markdoliner@pidgin.im>
parents:
24012
diff
changeset
|
321 | void jabber_add_deny(PurpleConnection *gc, const char *who); |
|
033942580f51
Commit patch #7670: Implement xep-0191 (simple blocking) for jabber protocols
Mark Doliner <markdoliner@pidgin.im>
parents:
24012
diff
changeset
|
322 | void jabber_rem_deny(PurpleConnection *gc, const char *who); |
|
16302
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
323 | void jabber_keepalive(PurpleConnection *gc); |
|
17806
ed4647f0915d
Added the ability to register gateways, re-using most of the account registration code for this.
Andreas Monitzer <am@adiumx.com>
parents:
17800
diff
changeset
|
324 | void jabber_register_gateway(JabberStream *js, const char *gateway); |
|
16302
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
325 | void jabber_register_account(PurpleAccount *account); |
|
18994
310e9d853e2b
Implemented a callback for unregistering, mirroring the registration callback. Since this is a new API, I can do it properly by passing it right in the unregister function call, instead of having a separate function for setting it.
Andreas Monitzer <am@adiumx.com>
parents:
18912
diff
changeset
|
326 | void jabber_unregister_account(PurpleAccount *account, PurpleAccountUnregistrationCb cb, void *user_data); |
|
20401
8aaa593a6269
Comment a partial implementation of the libpurple attention API for
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19898
diff
changeset
|
327 | gboolean jabber_send_attention(PurpleConnection *gc, const char *username, guint code); |
|
8aaa593a6269
Comment a partial implementation of the libpurple attention API for
Jeff Connelly <jeff2@soc.pidgin.im>
parents:
19898
diff
changeset
|
328 | GList *jabber_attention_types(PurpleAccount *account); |
|
16302
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
329 | void jabber_convo_closed(PurpleConnection *gc, const char *who); |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
330 | PurpleChat *jabber_find_blist_chat(PurpleAccount *account, const char *name); |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
331 | gboolean jabber_offline_message(const PurpleBuddy *buddy); |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
332 | int jabber_prpl_send_raw(PurpleConnection *gc, const char *buf, int len); |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
333 | GList *jabber_actions(PurplePlugin *plugin, gpointer context); |
|
26495
52846ebe1c7d
Don't assume a PurpleMedia instance will be created immediately.
Michael Ruprecht <maiku@pidgin.im>
parents:
26482
diff
changeset
|
334 | gboolean jabber_initiate_media(PurpleConnection *gc, const char *who, |
|
26454
94130b583e0b
Clean up usage of USE_VV in the XMPP protocol.
Michael Ruprecht <maiku@pidgin.im>
parents:
26337
diff
changeset
|
335 | PurpleMediaSessionType type); |
|
94130b583e0b
Clean up usage of USE_VV in the XMPP protocol.
Michael Ruprecht <maiku@pidgin.im>
parents:
26337
diff
changeset
|
336 | PurpleMediaCaps jabber_get_media_caps(PurpleConnection *gc, const char *who); |
|
16302
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
337 | void jabber_register_commands(void); |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
338 | void jabber_init_plugin(PurplePlugin *plugin); |
|
eb633ebf84f2
This does the ol' AIM/ICQ split trick on Jabber, creating an XMPP prpl. This can be used, later, to create a Bonjour plugin that reuses libjabber
Sean Egan <seanegan@pidgin.im>
parents:
16066
diff
changeset
|
339 | |
|
26703
17f9a4bef2a3
Further standardize the sentinel style (did someone say leading _s are theoretically a reserved namespace?)
Paul Aurich <darkrain42@pidgin.im>
parents:
26692
diff
changeset
|
340 | #endif /* PURPLE_JABBER_H_ */ |