Mercurial > pidgin.yaz
annotate libfaim/aim.h @ 2014:162f749ee5e7
[gaim-migrate @ 2024]
step 1 in moving towards group chat stuff.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Thu, 14 Jun 2001 03:40:56 +0000 |
parents | a2624692260b |
children | 4bf0163563ca |
rev | line source |
---|---|
1535 | 1 /* |
2 * Main libfaim header. Must be included in client for prototypes/macros. | |
3 * | |
4 * "come on, i turned a chick lesbian; i think this is the hackish equivalent" | |
5 * -- Josh Meyer | |
6 * | |
7 */ | |
8 | |
9 #ifndef __AIM_H__ | |
10 #define __AIM_H__ | |
11 | |
12 #define FAIM_VERSION_MAJOR 0 | |
13 #define FAIM_VERSION_MINOR 99 | |
14 #define FAIM_VERSION_MINORMINOR 1 | |
15 | |
16 #include <faimconfig.h> | |
17 #include <aim_cbtypes.h> | |
18 | |
19 #if !defined(FAIM_USEPTHREADS) && !defined(FAIM_USEFAKELOCKS) && !defined(FAIM_USENOPLOCKS) | |
20 #error pthreads, fakelocks, or noplocks are currently required. | |
21 #endif | |
22 | |
23 #include <stdio.h> | |
24 #include <string.h> | |
25 #include <fcntl.h> | |
26 #include <sys/types.h> | |
27 #include <stdlib.h> | |
28 #include <stdarg.h> | |
29 #include <errno.h> | |
30 #include <time.h> | |
31 | |
32 #ifdef _WIN32 | |
33 #include <windows.h> | |
34 #include <io.h> | |
35 #else | |
36 #include <sys/time.h> | |
37 #include <unistd.h> | |
38 #include <netinet/in.h> | |
39 #include <sys/socket.h> | |
40 #endif | |
41 | |
42 #ifdef FAIM_USEPTHREADS | |
43 #include <pthread.h> | |
44 #define faim_mutex_t pthread_mutex_t | |
45 #define faim_mutex_init(x) pthread_mutex_init(x, NULL) | |
46 #define faim_mutex_lock(x) pthread_mutex_lock(x) | |
47 #define faim_mutex_unlock(x) pthread_mutex_unlock(x) | |
48 #define faim_mutex_destroy(x) pthread_mutex_destroy(x) | |
49 #elif defined(FAIM_USEFAKELOCKS) | |
50 /* | |
51 * For platforms without pthreads, we also assume | |
52 * we're not linking against a threaded app. Which | |
53 * means we don't have to do real locking. The | |
54 * macros below do nothing really. They're a joke. | |
55 * But they get it to compile. | |
56 */ | |
57 #define faim_mutex_t char | |
58 #define faim_mutex_init(x) *x = 0 | |
59 #define faim_mutex_lock(x) while(*x != 0) {/* spin */}; *x = 1; | |
60 #define faim_mutex_unlock(x) while(*x != 0) {/* spin spin spin */}; *x = 0; | |
61 #define faim_mutex_destroy(x) while(*x != 0) {/* spiiiinnn */}; *x = 0; | |
62 #elif defined(FAIM_USENOPLOCKS) | |
63 #define faim_mutex_t char | |
64 #define faim_mutex_init(x) | |
65 #define faim_mutex_lock(x) | |
66 #define faim_mutex_unlock(x) | |
67 #define faim_mutex_destroy(x) | |
68 #endif | |
69 | |
70 /* Portability stuff (DMP) */ | |
71 | |
72 #ifdef _WIN32 | |
1593
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
73 #define sleep(x) Sleep((x)*1000) |
1535 | 74 #define snprintf _snprintf /* I'm not sure whats wrong with Microsoft here */ |
75 #define close(x) closesocket(x) /* no comment */ | |
76 #endif | |
77 | |
78 #if defined(mach) && defined(__APPLE__) | |
79 #define gethostbyname(x) gethostbyname2(x, AF_INET) | |
80 #endif | |
81 | |
82 #if defined(_WIN32) || defined(STRICT_ANSI) | |
83 #define faim_shortfunc | |
84 #else | |
85 #define faim_shortfunc inline | |
86 #endif | |
87 | |
88 #if defined(_WIN32) && !defined(WIN32_STATIC) | |
89 /* | |
90 * For a win32 DLL, we define WIN32_INDLL if this file | |
91 * is included while compiling the DLL. If its not | |
92 * defined (its included in a client app), the symbols | |
93 * will be imported instead of exported. | |
94 */ | |
95 #ifdef WIN32_INDLL | |
96 #define faim_export __declspec(dllexport) | |
97 #else | |
98 #define faim_export __declspec(dllimport) | |
99 #endif /* WIN32_INDLL */ | |
100 #define faim_internal | |
101 #else | |
102 /* | |
103 * Nothing normally needed for unix... | |
104 */ | |
105 #define faim_export | |
106 #define faim_internal | |
107 #endif | |
108 | |
109 /* | |
110 * Current Maximum Length for Screen Names (not including NULL) | |
111 * | |
112 * Currently only names up to 16 characters can be registered | |
113 * however it is aparently legal for them to be larger. | |
114 */ | |
115 #define MAXSNLEN 32 | |
116 | |
117 /* | |
118 * Current Maximum Length for Instant Messages | |
119 * | |
120 * This was found basically by experiment, but not wholly | |
121 * accurate experiment. It should not be regarded | |
122 * as completely correct. But its a decent approximation. | |
123 * | |
124 * Note that although we can send this much, its impossible | |
125 * for WinAIM clients (up through the latest (4.0.1957)) to | |
126 * send any more than 1kb. Amaze all your windows friends | |
127 * with utterly oversized instant messages! | |
128 * | |
129 * XXX: the real limit is the total SNAC size at 8192. Fix this. | |
130 * | |
131 */ | |
132 #define MAXMSGLEN 7987 | |
133 | |
134 /* | |
1899
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
135 * Maximum size of a Buddy Icon. |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
136 */ |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
137 #define MAXICONLEN 7168 |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
138 #define AIM_ICONIDENT "AVT1picture.id" |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
139 |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
140 /* |
1535 | 141 * Current Maximum Length for Chat Room Messages |
142 * | |
143 * This is actually defined by the protocol to be | |
144 * dynamic, but I have yet to see due cause to | |
145 * define it dynamically here. Maybe later. | |
146 * | |
147 */ | |
148 #define MAXCHATMSGLEN 512 | |
149 | |
150 /* | |
151 * Standard size of an AIM authorization cookie | |
152 */ | |
153 #define AIM_COOKIELEN 0x100 | |
154 | |
155 #define AIM_MD5_STRING "AOL Instant Messenger (SM)" | |
156 | |
157 /* | |
158 * Client info. Filled in by the client and passed | |
159 * in to aim_login(). The information ends up | |
160 * getting passed to OSCAR through the initial | |
161 * login command. | |
162 * | |
163 * XXX: Should this be per-session? -mid | |
164 * | |
165 */ | |
166 struct client_info_s { | |
167 char clientstring[100]; /* arbitrary size */ | |
168 int major; | |
169 int minor; | |
170 int build; | |
171 char country[3]; | |
172 char lang[3]; | |
173 int major2; | |
174 int minor2; | |
175 long unknown; | |
176 }; | |
177 | |
1746
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
178 #define AIM_CLIENTINFO_KNOWNGOOD_3_5_1670 { \ |
1649 | 179 "AOL Instant Messenger (SM), version 3.5.1670/WIN32", \ |
180 0x0003, \ | |
181 0x0005, \ | |
182 0x0686, \ | |
183 "us", \ | |
184 "en", \ | |
185 0x0004, \ | |
186 0x0000, \ | |
187 0x0000002a, \ | |
188 } | |
189 | |
1746
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
190 #define AIM_CLIENTINFO_KNOWNGOOD_4_1_2010 { \ |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
191 "AOL Instant Messenger (SM), version 4.1.2010/WIN32", \ |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
192 0x0004, \ |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
193 0x0001, \ |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
194 0x07da, \ |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
195 "us", \ |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
196 "en", \ |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
197 0x0004, \ |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
198 0x0000, \ |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
199 0x0000004b, \ |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
200 } |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
201 |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
202 /* |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
203 * I would make 4.1.2010 the default, but they seem to have found |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
204 * an alternate way of breaking that one. |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
205 * |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
206 * 3.5.1670 should work fine, however, you will be subjected to the |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
207 * memory test, which may require you to have a WinAIM binary laying |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
208 * around. (see login.c::memrequest()) |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
209 */ |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
210 #define AIM_CLIENTINFO_KNOWNGOOD AIM_CLIENTINFO_KNOWNGOOD_3_5_1670 |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
211 |
1535 | 212 #ifndef TRUE |
213 #define TRUE 1 | |
214 #define FALSE 0 | |
215 #endif | |
216 | |
217 /* | |
218 * These could be arbitrary, but its easier to use the actual AIM values | |
219 */ | |
220 #define AIM_CONN_TYPE_AUTH 0x0007 | |
221 #define AIM_CONN_TYPE_ADS 0x0005 | |
222 #define AIM_CONN_TYPE_BOS 0x0002 | |
223 #define AIM_CONN_TYPE_CHAT 0x000e | |
224 #define AIM_CONN_TYPE_CHATNAV 0x000d | |
225 | |
226 /* they start getting arbitrary in rendezvous stuff =) */ | |
227 #define AIM_CONN_TYPE_RENDEZVOUS 0x0101 /* these do not speak OSCAR! */ | |
228 #define AIM_CONN_TYPE_RENDEZVOUS_OUT 0x0102 /* socket waiting for accept() */ | |
229 | |
230 /* | |
231 * Subtypes, we need these for OFT stuff. | |
232 */ | |
233 #define AIM_CONN_SUBTYPE_OFT_DIRECTIM 0x0001 | |
234 #define AIM_CONN_SUBTYPE_OFT_GETFILE 0x0002 | |
235 #define AIM_CONN_SUBTYPE_OFT_SENDFILE 0x0003 | |
236 #define AIM_CONN_SUBTYPE_OFT_BUDDYICON 0x0004 | |
237 #define AIM_CONN_SUBTYPE_OFT_VOICE 0x0005 | |
238 | |
239 /* | |
240 * Status values returned from aim_conn_new(). ORed together. | |
241 */ | |
242 #define AIM_CONN_STATUS_READY 0x0001 | |
243 #define AIM_CONN_STATUS_INTERNALERR 0x0002 | |
244 #define AIM_CONN_STATUS_RESOLVERR 0x0040 | |
245 #define AIM_CONN_STATUS_CONNERR 0x0080 | |
246 #define AIM_CONN_STATUS_INPROGRESS 0x0100 | |
247 | |
248 #define AIM_FRAMETYPE_OSCAR 0x0000 | |
249 #define AIM_FRAMETYPE_OFT 0x0001 | |
250 | |
251 struct aim_conn_t { | |
252 int fd; | |
253 unsigned short type; | |
254 unsigned short subtype; | |
255 int seqnum; | |
256 int status; | |
257 void *priv; /* misc data the client may want to store */ | |
258 time_t lastactivity; /* time of last transmit */ | |
259 int forcedlatency; | |
260 struct aim_rxcblist_t *handlerlist; | |
261 faim_mutex_t active; /* lock around read/writes */ | |
262 faim_mutex_t seqnum_lock; /* lock around ->seqnum changes */ | |
263 struct aim_conn_t *next; | |
264 }; | |
265 | |
266 /* struct for incoming commands */ | |
267 struct command_rx_struct { | |
268 unsigned char hdrtype; /* defines which piece of the union to use */ | |
269 union { | |
270 struct { | |
271 char type; | |
272 unsigned short seqnum; | |
273 } oscar; | |
274 struct { | |
275 unsigned short type; | |
276 unsigned char magic[4]; /* ODC2 OFT2 */ | |
277 unsigned short hdr2len; | |
278 unsigned char *hdr2; /* rest of bloated header */ | |
279 } oft; | |
280 } hdr; | |
281 unsigned short commandlen; /* total payload length */ | |
282 unsigned char *data; /* packet data (from 7 byte on) */ | |
283 unsigned char lock; /* 0 = open, !0 = locked */ | |
284 unsigned char handled; /* 0 = new, !0 = been handled */ | |
285 unsigned char nofree; /* 0 = free data on purge, 1 = only unlink */ | |
286 struct aim_conn_t *conn; /* the connection it came in on... */ | |
287 struct command_rx_struct *next; /* ptr to next struct in list */ | |
288 }; | |
289 | |
290 /* struct for outgoing commands */ | |
291 struct command_tx_struct { | |
292 unsigned char hdrtype; /* defines which piece of the union to use */ | |
293 union { | |
294 struct { | |
295 unsigned char type; | |
296 unsigned short seqnum; | |
297 } oscar; | |
298 struct { | |
299 unsigned short type; | |
300 unsigned char magic[4]; /* ODC2 OFT2 */ | |
301 unsigned short hdr2len; | |
302 unsigned char *hdr2; | |
303 } oft; | |
304 } hdr; | |
305 u_int commandlen; | |
306 u_char *data; | |
307 u_int lock; /* 0 = open, !0 = locked */ | |
308 u_int sent; /* 0 = pending, !0 = has been sent */ | |
309 struct aim_conn_t *conn; | |
310 struct command_tx_struct *next; /* ptr to next struct in list */ | |
311 }; | |
312 | |
313 /* | |
314 * AIM Session: The main client-data interface. | |
315 * | |
316 */ | |
317 struct aim_session_t { | |
318 | |
319 /* ---- Client Accessible ------------------------ */ | |
320 /* | |
321 * Our screen name. | |
322 * | |
323 */ | |
324 char sn[MAXSNLEN+1]; | |
325 | |
326 /* | |
327 * Pointer to anything the client wants to | |
328 * explicitly associate with this session. | |
329 * | |
330 * This is for use in the callbacks mainly. In any | |
331 * callback, you can access this with sess->aux_data. | |
332 * | |
333 */ | |
334 void *aux_data; | |
335 | |
336 /* ---- Internal Use Only ------------------------ */ | |
337 /* | |
338 * Connection information | |
339 */ | |
340 struct aim_conn_t *connlist; | |
341 faim_mutex_t connlistlock; | |
342 | |
343 /* | |
344 * TX/RX queues | |
345 */ | |
346 struct command_tx_struct *queue_outgoing; | |
347 struct command_rx_struct *queue_incoming; | |
348 | |
349 /* | |
350 * Tx Enqueuing function | |
351 */ | |
352 int (*tx_enqueue)(struct aim_session_t *, struct command_tx_struct *); | |
353 | |
354 /* | |
355 * This is a dreadful solution to the what-room-are-we-joining | |
356 * problem. (There's no connection between the service | |
357 * request and the resulting redirect.) | |
358 */ | |
359 char *pendingjoin; | |
360 unsigned short pendingjoinexchange; | |
361 | |
362 /* | |
363 * Outstanding snac handling | |
364 * | |
365 * XXX: Should these be per-connection? -mid | |
366 */ | |
367 struct aim_snac_t *snac_hash[FAIM_SNAC_HASH_SIZE]; | |
368 faim_mutex_t snac_hash_locks[FAIM_SNAC_HASH_SIZE]; | |
369 unsigned long snac_nextid; | |
370 | |
371 struct { | |
372 char server[128]; | |
373 char username[128]; | |
374 char password[128]; | |
375 } socksproxy; | |
376 | |
377 unsigned long flags; | |
378 | |
379 int debug; | |
380 void (*debugcb)(struct aim_session_t *sess, int level, const char *format, va_list va); /* same as faim_debugging_callback_t */ | |
381 | |
382 struct aim_msgcookie_t *msgcookies; | |
1649 | 383 |
384 void *modlistv; | |
1535 | 385 }; |
386 | |
387 /* Values for sess->flags */ | |
388 #define AIM_SESS_FLAGS_SNACLOGIN 0x00000001 | |
389 #define AIM_SESS_FLAGS_XORLOGIN 0x00000002 | |
390 #define AIM_SESS_FLAGS_NONBLOCKCONNECT 0x00000004 | |
391 | |
392 /* | |
393 * AIM User Info, Standard Form. | |
394 */ | |
395 struct aim_userinfo_s { | |
396 char sn[MAXSNLEN+1]; | |
397 u_short warnlevel; | |
398 u_short idletime; | |
399 u_short flags; | |
400 u_long membersince; | |
401 u_long onlinesince; | |
402 u_long sessionlen; | |
403 u_short capabilities; | |
404 struct { | |
405 unsigned short status; | |
406 unsigned int ipaddr; | |
407 char crap[0x25]; /* until we figure it out... */ | |
408 } icqinfo; | |
409 }; | |
410 | |
411 #define AIM_FLAG_UNCONFIRMED 0x0001 /* "damned transients" */ | |
412 #define AIM_FLAG_ADMINISTRATOR 0x0002 | |
413 #define AIM_FLAG_AOL 0x0004 | |
414 #define AIM_FLAG_OSCAR_PAY 0x0008 | |
415 #define AIM_FLAG_FREE 0x0010 | |
416 #define AIM_FLAG_AWAY 0x0020 | |
417 #define AIM_FLAG_UNKNOWN40 0x0040 | |
418 #define AIM_FLAG_UNKNOWN80 0x0080 | |
419 | |
420 #define AIM_FLAG_ALLUSERS 0x001f | |
421 | |
422 | |
423 #if defined(FAIM_INTERNAL) || defined(FAIM_NEED_TLV) | |
424 /* | |
425 * TLV handling | |
426 */ | |
427 | |
428 /* Generic TLV structure. */ | |
429 struct aim_tlv_t { | |
430 u_short type; | |
431 u_short length; | |
432 u_char *value; | |
433 }; | |
434 | |
435 /* List of above. */ | |
436 struct aim_tlvlist_t { | |
437 struct aim_tlv_t *tlv; | |
438 struct aim_tlvlist_t *next; | |
439 }; | |
440 | |
441 /* TLV-handling functions */ | |
1593
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
442 faim_internal struct aim_tlvlist_t *aim_readtlvchain(const unsigned char *buf, const int maxlen); |
1535 | 443 faim_internal void aim_freetlvchain(struct aim_tlvlist_t **list); |
1593
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
444 faim_internal struct aim_tlv_t *aim_grabtlv(const unsigned char *src); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
445 faim_internal struct aim_tlv_t *aim_grabtlvstr(const unsigned char *src); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
446 faim_internal struct aim_tlv_t *aim_gettlv(struct aim_tlvlist_t *, const unsigned short, const int); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
447 faim_internal char *aim_gettlv_str(struct aim_tlvlist_t *, const unsigned short, const int); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
448 faim_internal unsigned char aim_gettlv8(struct aim_tlvlist_t *list, const unsigned short type, const int num); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
449 faim_internal unsigned short aim_gettlv16(struct aim_tlvlist_t *list, const unsigned short type, const int num); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
450 faim_internal unsigned long aim_gettlv32(struct aim_tlvlist_t *list, const unsigned short type, const int num); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
451 faim_internal int aim_puttlv (unsigned char *dest, struct aim_tlv_t *newtlv); |
1535 | 452 faim_internal struct aim_tlv_t *aim_createtlv(void); |
453 faim_internal int aim_freetlv(struct aim_tlv_t **oldtlv); | |
1593
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
454 faim_internal int aim_puttlv_8(unsigned char *buf, const unsigned short t, const unsigned char v); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
455 faim_internal int aim_puttlv_16(unsigned char *, const unsigned short, const unsigned short); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
456 faim_internal int aim_puttlv_32(unsigned char *, const unsigned short, const unsigned long); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
457 faim_internal int aim_puttlv_str(u_char *buf, const unsigned short t, const int l, const char *v); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
458 faim_internal int aim_writetlvchain(unsigned char *buf, const int buflen, struct aim_tlvlist_t **list); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
459 faim_internal int aim_addtlvtochain16(struct aim_tlvlist_t **list, const unsigned short type, const unsigned short val); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
460 faim_internal int aim_addtlvtochain32(struct aim_tlvlist_t **list, const unsigned short type, const unsigned long val); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
461 faim_internal int aim_addtlvtochain_str(struct aim_tlvlist_t **list, const unsigned short type, const char *str, const int len); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
462 faim_internal int aim_addtlvtochain_caps(struct aim_tlvlist_t **list, const unsigned short type, const unsigned short caps); |
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
463 faim_internal int aim_addtlvtochain_noval(struct aim_tlvlist_t **list, const unsigned short type); |
1535 | 464 faim_internal int aim_counttlvchain(struct aim_tlvlist_t **list); |
465 #endif /* FAIM_INTERNAL */ | |
466 | |
467 /* | |
468 * Get command from connections / Dispatch commands | |
469 * already in queue. | |
470 */ | |
471 faim_export int aim_get_command(struct aim_session_t *, struct aim_conn_t *); | |
472 int aim_rxdispatch(struct aim_session_t *); | |
473 | |
474 faim_export unsigned long aim_debugconn_sendconnect(struct aim_session_t *sess, struct aim_conn_t *conn); | |
475 | |
476 faim_export int aim_logoff(struct aim_session_t *); | |
477 | |
1899
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
478 #if !defined(FAIM_INTERNAL) || defined(FAIM_INTERNAL_INSANE) |
1535 | 479 /* the library should never call aim_conn_kill */ |
480 faim_export void aim_conn_kill(struct aim_session_t *sess, struct aim_conn_t **deadconn); | |
1899
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
481 #endif |
1535 | 482 |
1839
109cacf1ff97
[gaim-migrate @ 1849]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1815
diff
changeset
|
483 typedef int (*aim_rxcallback_t)(struct aim_session_t *, struct command_rx_struct *, ...); |
1535 | 484 |
485 /* aim_login.c */ | |
486 faim_export int aim_sendconnack(struct aim_session_t *sess, struct aim_conn_t *conn); | |
487 faim_export int aim_request_login (struct aim_session_t *sess, struct aim_conn_t *conn, char *sn); | |
488 faim_export int aim_send_login (struct aim_session_t *, struct aim_conn_t *, char *, char *, struct client_info_s *, char *key); | |
1649 | 489 faim_export int aim_encode_password_md5(const char *password, const char *key, unsigned char *digest); |
1535 | 490 faim_export unsigned long aim_sendauthresp(struct aim_session_t *sess, struct aim_conn_t *conn, char *sn, int errorcode, char *errorurl, char *bosip, char *cookie, char *email, int regstatus); |
491 faim_export int aim_gencookie(unsigned char *buf); | |
492 faim_export int aim_sendserverready(struct aim_session_t *sess, struct aim_conn_t *conn); | |
493 faim_export unsigned long aim_sendredirect(struct aim_session_t *sess, struct aim_conn_t *conn, unsigned short servid, char *ip, char *cookie); | |
494 faim_export void aim_purge_rxqueue(struct aim_session_t *); | |
495 | |
496 #define AIM_TX_QUEUED 0 /* default */ | |
497 #define AIM_TX_IMMEDIATE 1 | |
498 #define AIM_TX_USER 2 | |
499 faim_export int aim_tx_setenqueue(struct aim_session_t *sess, int what, int (*func)(struct aim_session_t *, struct command_tx_struct *)); | |
500 | |
501 faim_export int aim_tx_flushqueue(struct aim_session_t *); | |
502 faim_export void aim_tx_purgequeue(struct aim_session_t *); | |
503 | |
504 struct aim_rxcblist_t { | |
505 u_short family; | |
506 u_short type; | |
1839
109cacf1ff97
[gaim-migrate @ 1849]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1815
diff
changeset
|
507 aim_rxcallback_t handler; |
1535 | 508 u_short flags; |
509 struct aim_rxcblist_t *next; | |
510 }; | |
511 | |
512 faim_export int aim_conn_setlatency(struct aim_conn_t *conn, int newval); | |
513 | |
1839
109cacf1ff97
[gaim-migrate @ 1849]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1815
diff
changeset
|
514 faim_export int aim_conn_addhandler(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short type, aim_rxcallback_t newhandler, u_short flags); |
1535 | 515 faim_export int aim_clearhandlers(struct aim_conn_t *conn); |
516 | |
517 faim_export void aim_conn_close(struct aim_conn_t *deadconn); | |
518 faim_export struct aim_conn_t *aim_newconn(struct aim_session_t *, int type, char *dest); | |
519 faim_export int aim_conngetmaxfd(struct aim_session_t *); | |
520 faim_export struct aim_conn_t *aim_select(struct aim_session_t *, struct timeval *, int *); | |
521 faim_export int aim_conn_isready(struct aim_conn_t *); | |
522 faim_export int aim_conn_setstatus(struct aim_conn_t *, int); | |
523 faim_export int aim_conn_completeconnect(struct aim_session_t *sess, struct aim_conn_t *conn); | |
524 faim_export int aim_conn_isconnecting(struct aim_conn_t *conn); | |
525 | |
526 typedef void (*faim_debugging_callback_t)(struct aim_session_t *sess, int level, const char *format, va_list va); | |
527 faim_export int aim_setdebuggingcb(struct aim_session_t *sess, faim_debugging_callback_t); | |
528 faim_export void aim_session_init(struct aim_session_t *, unsigned long flags, int debuglevel); | |
1649 | 529 faim_export void aim_session_kill(struct aim_session_t *); |
1535 | 530 faim_export void aim_setupproxy(struct aim_session_t *sess, char *server, char *username, char *password); |
531 faim_export struct aim_conn_t *aim_getconn_type(struct aim_session_t *, int type); | |
532 | |
533 /* aim_misc.c */ | |
534 | |
535 #define AIM_VISIBILITYCHANGE_PERMITADD 0x05 | |
536 #define AIM_VISIBILITYCHANGE_PERMITREMOVE 0x06 | |
537 #define AIM_VISIBILITYCHANGE_DENYADD 0x07 | |
538 #define AIM_VISIBILITYCHANGE_DENYREMOVE 0x08 | |
539 | |
540 #define AIM_PRIVFLAGS_ALLOWIDLE 0x01 | |
541 #define AIM_PRIVFLAGS_ALLOWMEMBERSINCE 0x02 | |
542 | |
543 #define AIM_WARN_ANON 0x01 | |
544 | |
545 faim_export int aim_send_warning(struct aim_session_t *sess, struct aim_conn_t *conn, char *destsn, int anon); | |
546 faim_export unsigned long aim_bos_nop(struct aim_session_t *, struct aim_conn_t *); | |
547 faim_export unsigned long aim_flap_nop(struct aim_session_t *sess, struct aim_conn_t *conn); | |
548 faim_export unsigned long aim_bos_setidle(struct aim_session_t *, struct aim_conn_t *, u_long); | |
549 faim_export unsigned long aim_bos_changevisibility(struct aim_session_t *, struct aim_conn_t *, int, char *); | |
550 faim_export unsigned long aim_bos_setbuddylist(struct aim_session_t *, struct aim_conn_t *, char *); | |
551 faim_export unsigned long aim_bos_setprofile(struct aim_session_t *, struct aim_conn_t *, char *, char *, unsigned short); | |
552 faim_export unsigned long aim_bos_setgroupperm(struct aim_session_t *, struct aim_conn_t *, u_long); | |
553 faim_export unsigned long aim_bos_clientready(struct aim_session_t *, struct aim_conn_t *); | |
554 faim_export unsigned long aim_bos_reqrate(struct aim_session_t *, struct aim_conn_t *); | |
555 faim_export unsigned long aim_bos_ackrateresp(struct aim_session_t *, struct aim_conn_t *); | |
556 faim_export unsigned long aim_bos_setprivacyflags(struct aim_session_t *, struct aim_conn_t *, u_long); | |
557 faim_export unsigned long aim_bos_reqpersonalinfo(struct aim_session_t *, struct aim_conn_t *); | |
558 faim_export unsigned long aim_bos_reqservice(struct aim_session_t *, struct aim_conn_t *, u_short); | |
559 faim_export unsigned long aim_bos_reqrights(struct aim_session_t *, struct aim_conn_t *); | |
560 faim_export unsigned long aim_bos_reqbuddyrights(struct aim_session_t *, struct aim_conn_t *); | |
561 faim_export unsigned long aim_bos_reqlocaterights(struct aim_session_t *, struct aim_conn_t *); | |
562 faim_export unsigned long aim_bos_reqicbmparaminfo(struct aim_session_t *, struct aim_conn_t *); | |
563 faim_export unsigned long aim_addicbmparam(struct aim_session_t *sess,struct aim_conn_t *conn); | |
564 faim_export unsigned long aim_setversions(struct aim_session_t *sess, struct aim_conn_t *conn); | |
565 faim_export unsigned long aim_auth_setversions(struct aim_session_t *sess, struct aim_conn_t *conn); | |
566 faim_export unsigned long aim_auth_reqconfirm(struct aim_session_t *sess, struct aim_conn_t *conn); | |
567 faim_export unsigned long aim_auth_getinfo(struct aim_session_t *sess, struct aim_conn_t *conn, unsigned short info); | |
568 faim_export unsigned long aim_auth_setemail(struct aim_session_t *sess, struct aim_conn_t *conn, char *newemail); | |
569 faim_export unsigned long aim_setdirectoryinfo(struct aim_session_t *sess, struct aim_conn_t *conn, char *first, char *middle, char *last, char *maiden, char *nickname, char *street, char *city, char *state, char *zip, int country, unsigned short privacy); | |
570 faim_export unsigned long aim_setuserinterests(struct aim_session_t *sess, struct aim_conn_t *conn, char *interest1, char *interest2, char *interest3, char *interest4, char *interest5, unsigned short privacy); | |
571 faim_export unsigned long aim_icq_setstatus(struct aim_session_t *sess, struct aim_conn_t *conn, unsigned long status); | |
572 | |
573 faim_export struct aim_fileheader_t *aim_getlisting(struct aim_session_t *sess, FILE *); | |
574 | |
575 /* aim_rxhandlers.c */ | |
576 faim_export int aim_rxdispatch(struct aim_session_t *); | |
577 | |
578 #define AIM_CLIENTTYPE_UNKNOWN 0x0000 | |
579 #define AIM_CLIENTTYPE_MC 0x0001 | |
580 #define AIM_CLIENTTYPE_WINAIM 0x0002 | |
581 #define AIM_CLIENTTYPE_WINAIM41 0x0003 | |
582 #define AIM_CLIENTTYPE_AOL_TOC 0x0004 | |
583 faim_export unsigned short aim_fingerprintclient(unsigned char *msghdr, int len); | |
584 | |
585 #define AIM_RATE_CODE_CHANGE 0x0001 | |
586 #define AIM_RATE_CODE_WARNING 0x0002 | |
587 #define AIM_RATE_CODE_LIMIT 0x0003 | |
588 #define AIM_RATE_CODE_CLEARLIMIT 0x0004 | |
589 faim_export unsigned long aim_ads_clientready(struct aim_session_t *sess, struct aim_conn_t *conn); | |
590 faim_export unsigned long aim_ads_requestads(struct aim_session_t *sess, struct aim_conn_t *conn); | |
591 | |
592 /* aim_im.c */ | |
593 struct aim_directim_priv { | |
594 unsigned char cookie[8]; | |
595 char sn[MAXSNLEN+1]; | |
596 char ip[30]; | |
597 }; | |
598 | |
599 struct aim_fileheader_t { | |
600 #if 0 | |
601 char magic[4]; /* 0 */ | |
602 short hdrlen; /* 4 */ | |
603 short hdrtype; /* 6 */ | |
604 #endif | |
605 char bcookie[8]; /* 8 */ | |
606 short encrypt; /* 16 */ | |
607 short compress; /* 18 */ | |
608 short totfiles; /* 20 */ | |
609 short filesleft; /* 22 */ | |
610 short totparts; /* 24 */ | |
611 short partsleft; /* 26 */ | |
612 long totsize; /* 28 */ | |
613 long size; /* 32 */ | |
614 long modtime; /* 36 */ | |
615 long checksum; /* 40 */ | |
616 long rfrcsum; /* 44 */ | |
617 long rfsize; /* 48 */ | |
618 long cretime; /* 52 */ | |
619 long rfcsum; /* 56 */ | |
620 long nrecvd; /* 60 */ | |
621 long recvcsum; /* 64 */ | |
622 char idstring[32]; /* 68 */ | |
623 char flags; /* 100 */ | |
624 char lnameoffset; /* 101 */ | |
625 char lsizeoffset; /* 102 */ | |
626 char dummy[69]; /* 103 */ | |
627 char macfileinfo[16]; /* 172 */ | |
628 short nencode; /* 188 */ | |
629 short nlanguage; /* 190 */ | |
630 char name[64]; /* 192 */ | |
631 /* 256 */ | |
632 }; | |
633 | |
634 struct aim_filetransfer_priv { | |
635 char sn[MAXSNLEN]; | |
636 char cookie[8]; | |
637 char ip[30]; | |
638 int state; | |
639 struct aim_fileheader_t fh; | |
640 }; | |
641 | |
1899
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
642 struct aim_chat_roominfo { |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
643 u_short exchange; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
644 char *name; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
645 u_short instance; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
646 }; |
1535 | 647 |
648 #define AIM_IMFLAGS_AWAY 0x01 /* mark as an autoreply */ | |
649 #define AIM_IMFLAGS_ACK 0x02 /* request a receipt notice */ | |
1899
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
650 #define AIM_IMFLAGS_UNICODE 0x04 |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
651 #define AIM_IMFLAGS_ISO_8859_1 0x08 |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
652 #define AIM_IMFLAGS_BUDDYREQ 0x10 /* buddy icon requested */ |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
653 #define AIM_IMFLAGS_HASICON 0x20 /* already has icon (timestamp included) */ |
1535 | 654 |
1899
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
655 struct aim_sendimext_args { |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
656 const char *destsn; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
657 unsigned short flags; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
658 const char *msg; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
659 int msglen; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
660 int iconlen; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
661 time_t iconstamp; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
662 unsigned short iconsum; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
663 }; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
664 |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
665 struct aim_incomingim_ch1_args { |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
666 char *msg; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
667 int msglen; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
668 unsigned long icbmflags; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
669 unsigned short flag1; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
670 unsigned short flag2; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
671 int finlen; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
672 unsigned char fingerprint[10]; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
673 time_t iconstamp; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
674 }; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
675 |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
676 struct aim_incomingim_ch2_args { |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
677 unsigned short reqclass; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
678 unsigned short status; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
679 union { |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
680 struct { |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
681 unsigned int length; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
682 time_t timestamp; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
683 unsigned char *icon; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
684 } icon; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
685 struct { |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
686 } voice; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
687 struct aim_directim_priv *directim; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
688 struct { |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
689 char *msg; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
690 char *encoding; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
691 char *lang; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
692 struct aim_chat_roominfo roominfo; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
693 } chat; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
694 struct { |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
695 char *ip; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
696 unsigned char *cookie; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
697 } getfile; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
698 struct { |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
699 } sendfile; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
700 } info; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
701 }; |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
702 |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
703 faim_export unsigned long aim_send_im_ext(struct aim_session_t *sess, struct aim_conn_t *conn, struct aim_sendimext_args *args); |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
704 faim_export unsigned long aim_send_im(struct aim_session_t *, struct aim_conn_t *, const char *destsn, unsigned short flags, const char *msg); |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
705 faim_export int aim_send_icon(struct aim_session_t *sess, struct aim_conn_t *conn, const char *sn, const unsigned char *icon, int iconlen, time_t stamp, unsigned short iconsum); |
a2624692260b
[gaim-migrate @ 1909]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1839
diff
changeset
|
706 faim_export unsigned short aim_iconsum(const unsigned char *buf, int buflen); |
1535 | 707 faim_export int aim_send_im_direct(struct aim_session_t *, struct aim_conn_t *, char *); |
708 faim_export struct aim_conn_t * aim_directim_initiate(struct aim_session_t *, struct aim_conn_t *, struct aim_directim_priv *, char *destsn); | |
709 faim_export struct aim_conn_t *aim_directim_connect(struct aim_session_t *, struct aim_conn_t *, struct aim_directim_priv *); | |
710 faim_export unsigned long aim_seticbmparam(struct aim_session_t *, struct aim_conn_t *conn); | |
711 | |
712 faim_export struct aim_conn_t *aim_getfile_initiate(struct aim_session_t *sess, struct aim_conn_t *conn, char *destsn); | |
713 faim_export int aim_oft_getfile_request(struct aim_session_t *sess, struct aim_conn_t *conn, const unsigned char *name, const int size); | |
714 faim_export int aim_oft_getfile_ack(struct aim_session_t *sess, struct aim_conn_t *conn); | |
715 faim_export int aim_oft_getfile_end(struct aim_session_t *sess, struct aim_conn_t *conn); | |
716 | |
717 /* aim_info.c */ | |
1815
f15d449b3167
[gaim-migrate @ 1825]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1746
diff
changeset
|
718 #define AIM_CAPS_BUDDYICON 0x0001 |
f15d449b3167
[gaim-migrate @ 1825]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1746
diff
changeset
|
719 #define AIM_CAPS_VOICE 0x0002 |
f15d449b3167
[gaim-migrate @ 1825]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1746
diff
changeset
|
720 #define AIM_CAPS_IMIMAGE 0x0004 |
f15d449b3167
[gaim-migrate @ 1825]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1746
diff
changeset
|
721 #define AIM_CAPS_CHAT 0x0008 |
f15d449b3167
[gaim-migrate @ 1825]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1746
diff
changeset
|
722 #define AIM_CAPS_GETFILE 0x0010 |
f15d449b3167
[gaim-migrate @ 1825]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1746
diff
changeset
|
723 #define AIM_CAPS_SENDFILE 0x0020 |
f15d449b3167
[gaim-migrate @ 1825]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1746
diff
changeset
|
724 #define AIM_CAPS_GAMES 0x0040 |
f15d449b3167
[gaim-migrate @ 1825]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1746
diff
changeset
|
725 #define AIM_CAPS_SAVESTOCKS 0x0080 |
f15d449b3167
[gaim-migrate @ 1825]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1746
diff
changeset
|
726 #define AIM_CAPS_SENDBUDDYLIST 0x0100 |
f15d449b3167
[gaim-migrate @ 1825]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1746
diff
changeset
|
727 #define AIM_CAPS_GAMES2 0x0200 |
f15d449b3167
[gaim-migrate @ 1825]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1746
diff
changeset
|
728 #define AIM_CAPS_LAST 0x8000 |
1535 | 729 |
1649 | 730 faim_export int aim_0002_000b(struct aim_session_t *sess, struct aim_conn_t *conn, const char *sn); |
1746
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
731 |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
732 #define AIM_SENDMEMBLOCK_FLAG_ISREQUEST 0 |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
733 #define AIM_SENDMEMBLOCK_FLAG_ISHASH 1 |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
734 |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
735 faim_export int aim_sendmemblock(struct aim_session_t *sess, struct aim_conn_t *conn, unsigned long offset, unsigned long len, const unsigned char *buf, unsigned char flag); |
1649 | 736 |
1535 | 737 #define AIM_GETINFO_GENERALINFO 0x00001 |
738 #define AIM_GETINFO_AWAYMESSAGE 0x00003 | |
739 | |
740 struct aim_msgcookie_t { | |
741 unsigned char cookie[8]; | |
742 int type; | |
743 void *data; | |
744 time_t addtime; | |
745 struct aim_msgcookie_t *next; | |
746 }; | |
747 | |
748 struct aim_invite_priv { | |
749 char *sn; | |
750 char *roomname; | |
751 int exchange; | |
752 int instance; | |
753 }; | |
754 | |
755 #define AIM_COOKIETYPE_UNKNOWN 0x00 | |
756 #define AIM_COOKIETYPE_ICBM 0x01 | |
757 #define AIM_COOKIETYPE_ADS 0x02 | |
758 #define AIM_COOKIETYPE_BOS 0x03 | |
759 #define AIM_COOKIETYPE_IM 0x04 | |
760 #define AIM_COOKIETYPE_CHAT 0x05 | |
761 #define AIM_COOKIETYPE_CHATNAV 0x06 | |
762 #define AIM_COOKIETYPE_INVITE 0x07 | |
763 /* we'll move OFT up a bit to give breathing room. not like it really | |
764 * matters. */ | |
765 #define AIM_COOKIETYPE_OFTIM 0x10 | |
766 #define AIM_COOKIETYPE_OFTGET 0x11 | |
767 #define AIM_COOKIETYPE_OFTSEND 0x12 | |
768 #define AIM_COOKIETYPE_OFTVOICE 0x13 | |
769 #define AIM_COOKIETYPE_OFTIMAGE 0x14 | |
770 #define AIM_COOKIETYPE_OFTICON 0x15 | |
771 | |
772 faim_export int aim_handlerendconnect(struct aim_session_t *sess, struct aim_conn_t *cur); | |
773 | |
774 #define AIM_TRANSFER_DENY_NOTSUPPORTED 0x0000 | |
775 #define AIM_TRANSFER_DENY_DECLINE 0x0001 | |
776 #define AIM_TRANSFER_DENY_NOTACCEPTING 0x0002 | |
777 faim_export unsigned long aim_denytransfer(struct aim_session_t *sess, struct aim_conn_t *conn, char *sender, char *cookie, unsigned short code); | |
778 faim_export struct aim_conn_t *aim_accepttransfer(struct aim_session_t *sess, struct aim_conn_t *conn, char *sn, char *cookie, char *ip, unsigned short listingfiles, unsigned short listingtotsize, unsigned short listingsize, unsigned int listingchecksum, unsigned short rendid); | |
779 | |
1649 | 780 faim_export int aim_getinfo(struct aim_session_t *, struct aim_conn_t *, const char *, unsigned short); |
1535 | 781 faim_export int aim_sendbuddyoncoming(struct aim_session_t *sess, struct aim_conn_t *conn, struct aim_userinfo_s *info); |
782 faim_export int aim_sendbuddyoffgoing(struct aim_session_t *sess, struct aim_conn_t *conn, char *sn); | |
783 | |
784 | |
785 /* aim_auth.c */ | |
786 faim_export int aim_auth_sendcookie(struct aim_session_t *, struct aim_conn_t *, u_char *); | |
787 faim_export u_long aim_auth_clientready(struct aim_session_t *, struct aim_conn_t *); | |
788 faim_export unsigned long aim_auth_changepasswd(struct aim_session_t *, struct aim_conn_t *, char *, char *); | |
789 | |
790 /* aim_buddylist.c */ | |
791 faim_export unsigned long aim_add_buddy(struct aim_session_t *, struct aim_conn_t *, char *); | |
792 faim_export unsigned long aim_remove_buddy(struct aim_session_t *, struct aim_conn_t *, char *); | |
793 | |
794 /* aim_search.c */ | |
795 faim_export u_long aim_usersearch_address(struct aim_session_t *, struct aim_conn_t *, char *); | |
796 | |
797 struct aim_chat_exchangeinfo { | |
798 u_short number; | |
799 char *name; | |
800 char *charset1; | |
801 char *lang1; | |
802 char *charset2; | |
803 char *lang2; | |
804 }; | |
805 | |
1746
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
806 #define AIM_CHATFLAGS_NOREFLECT 0x0001 |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
807 #define AIM_CHATFLAGS_AWAY 0x0002 |
bacb77b0eb06
[gaim-migrate @ 1756]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1649
diff
changeset
|
808 faim_export unsigned long aim_chat_send_im(struct aim_session_t *sess, struct aim_conn_t *conn, unsigned short flags, const char *msg, int msglen); |
1535 | 809 faim_export unsigned long aim_chat_join(struct aim_session_t *sess, struct aim_conn_t *conn, u_short exchange, const char *roomname); |
810 faim_export unsigned long aim_chat_clientready(struct aim_session_t *sess, struct aim_conn_t *conn); | |
811 faim_export int aim_chat_attachname(struct aim_conn_t *conn, char *roomname); | |
812 faim_export char *aim_chat_getname(struct aim_conn_t *conn); | |
813 faim_export struct aim_conn_t *aim_chat_getconn(struct aim_session_t *, char *name); | |
814 | |
815 faim_export unsigned long aim_chatnav_reqrights(struct aim_session_t *sess, struct aim_conn_t *conn); | |
816 faim_export unsigned long aim_chatnav_clientready(struct aim_session_t *sess, struct aim_conn_t *conn); | |
817 | |
818 faim_export unsigned long aim_chat_invite(struct aim_session_t *sess, struct aim_conn_t *conn, char *sn, char *msg, u_short exchange, char *roomname, u_short instance); | |
819 | |
820 faim_export u_long aim_chatnav_createroom(struct aim_session_t *sess, struct aim_conn_t *conn, char *name, u_short exchange); | |
821 faim_export int aim_chat_leaveroom(struct aim_session_t *sess, char *name); | |
822 | |
823 /* aim_util.c */ | |
824 #ifdef AIMUTIL_USEMACROS | |
825 /* | |
826 * These are really ugly. You'd think this was LISP. I wish it was. | |
827 */ | |
828 #define aimutil_put8(buf, data) ((*(buf) = (u_char)(data)&0xff),1) | |
829 #define aimutil_get8(buf) ((*(buf))&0xff) | |
830 #define aimutil_put16(buf, data) ( \ | |
831 (*(buf) = (u_char)((data)>>8)&0xff), \ | |
832 (*((buf)+1) = (u_char)(data)&0xff), \ | |
833 2) | |
834 #define aimutil_get16(buf) ((((*(buf))<<8)&0xff00) + ((*((buf)+1)) & 0xff)) | |
835 #define aimutil_put32(buf, data) ( \ | |
836 (*((buf)) = (u_char)((data)>>24)&0xff), \ | |
837 (*((buf)+1) = (u_char)((data)>>16)&0xff), \ | |
838 (*((buf)+2) = (u_char)((data)>>8)&0xff), \ | |
839 (*((buf)+3) = (u_char)(data)&0xff), \ | |
840 4) | |
841 #define aimutil_get32(buf) ((((*(buf))<<24)&0xff000000) + \ | |
842 (((*((buf)+1))<<16)&0x00ff0000) + \ | |
843 (((*((buf)+2))<< 8)&0x0000ff00) + \ | |
844 (((*((buf)+3) )&0x000000ff))) | |
845 #else | |
846 #warning Not using aimutil macros. May have performance problems. | |
847 int aimutil_put8(u_char *, u_char); | |
848 u_char aimutil_get8(u_char *buf); | |
849 int aimutil_put16(u_char *, u_short); | |
850 u_short aimutil_get16(u_char *); | |
851 int aimutil_put32(u_char *, u_long); | |
852 u_long aimutil_get32(u_char *); | |
853 #endif | |
854 | |
855 faim_export int aimutil_putstr(u_char *, const char *, int); | |
856 faim_export int aimutil_tokslen(char *toSearch, int index, char dl); | |
857 faim_export int aimutil_itemcnt(char *toSearch, char dl); | |
858 faim_export char *aimutil_itemidx(char *toSearch, int index, char dl); | |
859 | |
860 faim_export int aim_snlen(const char *sn); | |
861 faim_export int aim_sncmp(const char *sn1, const char *sn2); | |
862 | |
863 /* for libc's that dont have it */ | |
864 faim_export char *aim_strsep(char **pp, const char *delim); | |
865 | |
866 /* aim_meta.c */ | |
867 faim_export char *aim_getbuilddate(void); | |
868 faim_export char *aim_getbuildtime(void); | |
1649 | 869 faim_export int aim_getbuildstring(char *buf, int buflen); |
1535 | 870 |
1593
ec31e23aadc7
[gaim-migrate @ 1603]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1535
diff
changeset
|
871 #include <aim_internal.h> |
1535 | 872 |
873 #endif /* __AIM_H__ */ | |
874 |