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 Myer |
---|
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 | #include <stdio.h> |
---|
20 | #include <string.h> |
---|
21 | #include <fcntl.h> |
---|
22 | #include <sys/types.h> |
---|
23 | #include <stdlib.h> |
---|
24 | #include <stdarg.h> |
---|
25 | #include <errno.h> |
---|
26 | #include <time.h> |
---|
27 | |
---|
28 | #ifndef _WIN32 |
---|
29 | #include <sys/time.h> |
---|
30 | #include <unistd.h> |
---|
31 | #include <netdb.h> |
---|
32 | #include <netinet/in.h> |
---|
33 | #include <sys/socket.h> |
---|
34 | #else |
---|
35 | #include <winsock.h> |
---|
36 | #endif |
---|
37 | |
---|
38 | #ifdef __cplusplus |
---|
39 | extern "C" { |
---|
40 | #endif |
---|
41 | |
---|
42 | /* XXX adjust these based on autoconf-detected platform */ |
---|
43 | typedef unsigned char fu8_t; |
---|
44 | typedef unsigned short fu16_t; |
---|
45 | typedef unsigned int fu32_t; |
---|
46 | typedef fu32_t aim_snacid_t; |
---|
47 | typedef fu16_t flap_seqnum_t; |
---|
48 | |
---|
49 | #if defined(mach) && defined(__APPLE__) |
---|
50 | #define gethostbyname(x) gethostbyname2(x, AF_INET) |
---|
51 | #endif |
---|
52 | |
---|
53 | #if defined(_WIN32) && !defined(WIN32_STATIC) |
---|
54 | /* |
---|
55 | * For a win32 DLL, we define WIN32_INDLL if this file |
---|
56 | * is included while compiling the DLL. If its not |
---|
57 | * defined (its included in a client app), the symbols |
---|
58 | * will be imported instead of exported. |
---|
59 | */ |
---|
60 | #ifdef WIN32_INDLL |
---|
61 | #define faim_export __declspec(dllexport) |
---|
62 | #else |
---|
63 | #define faim_export __declspec(dllimport) |
---|
64 | #endif /* WIN32_INDLL */ |
---|
65 | #define faim_internal |
---|
66 | #else |
---|
67 | /* |
---|
68 | * Nothing normally needed for unix... |
---|
69 | */ |
---|
70 | #define faim_export |
---|
71 | #define faim_internal |
---|
72 | #endif |
---|
73 | |
---|
74 | #ifndef FALSE |
---|
75 | #define FALSE (0) |
---|
76 | #endif |
---|
77 | |
---|
78 | #ifndef TRUE |
---|
79 | #define TRUE (!FALSE) |
---|
80 | #endif |
---|
81 | |
---|
82 | #ifndef bool |
---|
83 | #define bool fu8_t |
---|
84 | #endif |
---|
85 | |
---|
86 | /* |
---|
87 | * Current Maximum Length for Screen Names (not including NULL) |
---|
88 | * |
---|
89 | * Currently only names up to 16 characters can be registered |
---|
90 | * however it is aparently legal for them to be larger. |
---|
91 | */ |
---|
92 | #define MAXSNLEN 97 |
---|
93 | |
---|
94 | /* |
---|
95 | * Current Maximum Length for Instant Messages |
---|
96 | * |
---|
97 | * This was found basically by experiment, but not wholly |
---|
98 | * accurate experiment. It should not be regarded |
---|
99 | * as completely correct. But its a decent approximation. |
---|
100 | * |
---|
101 | * Note that although we can send this much, its impossible |
---|
102 | * for WinAIM clients (up through the latest (4.0.1957)) to |
---|
103 | * send any more than 1kb. Amaze all your windows friends |
---|
104 | * with utterly oversized instant messages! |
---|
105 | * |
---|
106 | * XXX: the real limit is the total SNAC size at 8192. Fix this. |
---|
107 | * |
---|
108 | */ |
---|
109 | #define MAXMSGLEN 7987 |
---|
110 | |
---|
111 | /* |
---|
112 | * Maximum size of a Buddy Icon. |
---|
113 | */ |
---|
114 | #define MAXICONLEN 7168 |
---|
115 | #define AIM_ICONIDENT "AVT1picture.id" |
---|
116 | |
---|
117 | /* |
---|
118 | * Current Maximum Length for Chat Room Messages |
---|
119 | * |
---|
120 | * This is actually defined by the protocol to be |
---|
121 | * dynamic, but I have yet to see due cause to |
---|
122 | * define it dynamically here. Maybe later. |
---|
123 | * |
---|
124 | */ |
---|
125 | #define MAXCHATMSGLEN 512 |
---|
126 | |
---|
127 | /** |
---|
128 | * Maximum length for the password of an ICQ account |
---|
129 | */ |
---|
130 | #define MAXICQPASSLEN 8 |
---|
131 | |
---|
132 | #define AIM_MD5_STRING "AOL Instant Messenger (SM)" |
---|
133 | |
---|
134 | /* |
---|
135 | * Client info. Filled in by the client and passed in to |
---|
136 | * aim_send_login(). The information ends up getting passed to OSCAR |
---|
137 | * through the initial login command. |
---|
138 | * |
---|
139 | */ |
---|
140 | struct client_info_s { |
---|
141 | const char *clientstring; |
---|
142 | fu16_t clientid; |
---|
143 | fu16_t major; |
---|
144 | fu16_t minor; |
---|
145 | fu16_t point; |
---|
146 | fu16_t build; |
---|
147 | fu32_t distrib; |
---|
148 | const char *country; /* two-letter abbrev */ |
---|
149 | const char *lang; /* two-letter abbrev */ |
---|
150 | }; |
---|
151 | |
---|
152 | /* Needs to be checked */ |
---|
153 | #define CLIENTINFO_AIM_3_5_1670 { \ |
---|
154 | "AOL Instant Messenger (SM), version 3.5.1670/WIN32", \ |
---|
155 | 0x0004, \ |
---|
156 | 0x0003, 0x0005, \ |
---|
157 | 0x0000, 0x0686, \ |
---|
158 | 0x0000002a, \ |
---|
159 | "us", "en", \ |
---|
160 | } |
---|
161 | |
---|
162 | /* Needs to be checked */ |
---|
163 | /* Latest winaim without ssi */ |
---|
164 | #define CLIENTINFO_AIM_4_1_2010 { \ |
---|
165 | "AOL Instant Messenger (SM), version 4.1.2010/WIN32", \ |
---|
166 | 0x0004, \ |
---|
167 | 0x0004, 0x0001, \ |
---|
168 | 0x0000, 0x07da, \ |
---|
169 | 0x0000004b, \ |
---|
170 | "us", "en", \ |
---|
171 | } |
---|
172 | |
---|
173 | /* Needs to be checked */ |
---|
174 | #define CLIENTINFO_AIM_4_3_2188 { \ |
---|
175 | "AOL Instant Messenger (SM), version 4.3.2188/WIN32", \ |
---|
176 | 0x0109, \ |
---|
177 | 0x0400, 0x0003, \ |
---|
178 | 0x0000, 0x088c, \ |
---|
179 | 0x00000086, \ |
---|
180 | "us", "en", \ |
---|
181 | } |
---|
182 | |
---|
183 | /* Needs to be checked */ |
---|
184 | #define CLIENTINFO_AIM_4_8_2540 { \ |
---|
185 | "AOL Instant Messenger (SM), version 4.8.2540/WIN32", \ |
---|
186 | 0x0109, \ |
---|
187 | 0x0004, 0x0008, \ |
---|
188 | 0x0000, 0x09ec, \ |
---|
189 | 0x000000af, \ |
---|
190 | "us", "en", \ |
---|
191 | } |
---|
192 | |
---|
193 | /* Needs to be checked */ |
---|
194 | #define CLIENTINFO_AIM_5_0_2938 { \ |
---|
195 | "AOL Instant Messenger, version 5.0.2938/WIN32", \ |
---|
196 | 0x0109, \ |
---|
197 | 0x0005, 0x0000, \ |
---|
198 | 0x0000, 0x0b7a, \ |
---|
199 | 0x00000000, \ |
---|
200 | "us", "en", \ |
---|
201 | } |
---|
202 | |
---|
203 | #define CLIENTINFO_AIM_5_1_3036 { \ |
---|
204 | "AOL Instant Messenger, version 5.1.3036/WIN32", \ |
---|
205 | 0x0109, \ |
---|
206 | 0x0005, 0x0001, \ |
---|
207 | 0x0000, 0x0bdc, \ |
---|
208 | 0x000000d2, \ |
---|
209 | "us", "en", \ |
---|
210 | } |
---|
211 | |
---|
212 | #define CLIENTINFO_AIM_5_5_3415 { \ |
---|
213 | "AOL Instant Messenger, version 5.5.3415/WIN32", \ |
---|
214 | 0x0109, \ |
---|
215 | 0x0005, 0x0005, \ |
---|
216 | 0x0000, 0x0057, \ |
---|
217 | 0x000000ef, \ |
---|
218 | "us", "en", \ |
---|
219 | } |
---|
220 | |
---|
221 | #define CLIENTINFO_ICHAT_1_0 { \ |
---|
222 | "Apple iChat", \ |
---|
223 | 0x311a, \ |
---|
224 | 0x0001, 0x0000, \ |
---|
225 | 0x0000, 0x003c, \ |
---|
226 | 0x000000c6, \ |
---|
227 | "us", "en", \ |
---|
228 | } |
---|
229 | |
---|
230 | /* Needs to be checked */ |
---|
231 | #define CLIENTINFO_ICQ_4_65_3281 { \ |
---|
232 | "ICQ Inc. - Product of ICQ (TM) 2000b.4.65.1.3281.85", \ |
---|
233 | 0x010a, \ |
---|
234 | 0x0004, 0x0041, \ |
---|
235 | 0x0001, 0x0cd1, \ |
---|
236 | 0x00000055, \ |
---|
237 | "us", "en", \ |
---|
238 | } |
---|
239 | |
---|
240 | /* Needs to be checked */ |
---|
241 | #define CLIENTINFO_ICQ_5_34_3728 { \ |
---|
242 | "ICQ Inc. - Product of ICQ (TM).2002a.5.34.1.3728.85", \ |
---|
243 | 0x010a, \ |
---|
244 | 0x0005, 0x0022, \ |
---|
245 | 0x0001, 0x0e8f, \ |
---|
246 | 0x00000055, \ |
---|
247 | "us", "en", \ |
---|
248 | } |
---|
249 | |
---|
250 | #define CLIENTINFO_ICQ_5_45_3777 { \ |
---|
251 | "ICQ Inc. - Product of ICQ (TM).2003a.5.45.1.3777.85", \ |
---|
252 | 0x010a, \ |
---|
253 | 0x0005, 0x002d, \ |
---|
254 | 0x0001, 0x0ec1, \ |
---|
255 | 0x00000055, \ |
---|
256 | "us", "en", \ |
---|
257 | } |
---|
258 | |
---|
259 | #define CLIENTINFO_ICQBASIC_14_3_1068 { \ |
---|
260 | "ICQBasic", \ |
---|
261 | 0x010a, \ |
---|
262 | 0x0014, 0x0003, \ |
---|
263 | 0x0000, 0x042c, \ |
---|
264 | 0x0000043d, \ |
---|
265 | "us", "en", \ |
---|
266 | } |
---|
267 | |
---|
268 | #define CLIENTINFO_NETSCAPE_7_0_1 { \ |
---|
269 | "Netscape 2000 an approved user of AOL Instant Messenger (SM)", \ |
---|
270 | 0x1d0d, \ |
---|
271 | 0x0007, 0x0000, \ |
---|
272 | 0x0001, 0x0000, \ |
---|
273 | 0x00000058, \ |
---|
274 | "us", "en", \ |
---|
275 | } |
---|
276 | |
---|
277 | #define CLIENTINFO_AIM_KNOWNGOOD CLIENTINFO_AIM_5_1_3036 |
---|
278 | #define CLIENTINFO_ICQ_KNOWNGOOD CLIENTINFO_ICQ_5_45_3777 |
---|
279 | |
---|
280 | /* |
---|
281 | * These could be arbitrary, but its easier to use the actual AIM values |
---|
282 | */ |
---|
283 | #define AIM_CONN_TYPE_BOS 0x0002 |
---|
284 | #define AIM_CONN_TYPE_ADS 0x0005 |
---|
285 | #define AIM_CONN_TYPE_AUTH 0x0007 |
---|
286 | #define AIM_CONN_TYPE_CHATNAV 0x000d |
---|
287 | #define AIM_CONN_TYPE_CHAT 0x000e |
---|
288 | #define AIM_CONN_TYPE_SEARCH 0x000f |
---|
289 | #define AIM_CONN_TYPE_ICON 0x0010 |
---|
290 | #define AIM_CONN_TYPE_EMAIL 0x0018 |
---|
291 | |
---|
292 | /* they start getting arbitrary for rendezvous stuff =) */ |
---|
293 | #define AIM_CONN_TYPE_RENDEZVOUS 0xfffe /* these do not speak FLAP! */ |
---|
294 | #define AIM_CONN_TYPE_LISTENER 0xffff /* socket waiting for accept() */ |
---|
295 | |
---|
296 | /* |
---|
297 | * Subtypes, we need these for OFT stuff. |
---|
298 | */ |
---|
299 | #define AIM_CONN_SUBTYPE_OFT_DIRECTIM 0x0001 |
---|
300 | #define AIM_CONN_SUBTYPE_OFT_GETFILE 0x0002 |
---|
301 | #define AIM_CONN_SUBTYPE_OFT_SENDFILE 0x0003 |
---|
302 | #define AIM_CONN_SUBTYPE_OFT_BUDDYICON 0x0004 |
---|
303 | #define AIM_CONN_SUBTYPE_OFT_VOICE 0x0005 |
---|
304 | |
---|
305 | /* |
---|
306 | * Status values returned from aim_conn_new(). ORed together. |
---|
307 | */ |
---|
308 | #define AIM_CONN_STATUS_READY 0x0001 |
---|
309 | #define AIM_CONN_STATUS_INTERNALERR 0x0002 |
---|
310 | #define AIM_CONN_STATUS_RESOLVERR 0x0040 |
---|
311 | #define AIM_CONN_STATUS_CONNERR 0x0080 |
---|
312 | #define AIM_CONN_STATUS_INPROGRESS 0x0100 |
---|
313 | |
---|
314 | #define AIM_FRAMETYPE_FLAP 0x0000 |
---|
315 | #define AIM_FRAMETYPE_OFT 0x0001 |
---|
316 | |
---|
317 | typedef struct aim_conn_s { |
---|
318 | int fd; |
---|
319 | fu16_t type; |
---|
320 | fu16_t subtype; |
---|
321 | flap_seqnum_t seqnum; |
---|
322 | fu32_t status; |
---|
323 | void *priv; /* misc data the client may want to store */ |
---|
324 | void *internal; /* internal conn-specific libfaim data */ |
---|
325 | time_t lastactivity; /* time of last transmit */ |
---|
326 | int forcedlatency; |
---|
327 | void *handlerlist; |
---|
328 | void *sessv; /* pointer to parent session */ |
---|
329 | void *inside; /* only accessible from inside libfaim */ |
---|
330 | struct aim_conn_s *next; |
---|
331 | } aim_conn_t; |
---|
332 | |
---|
333 | /* |
---|
334 | * Byte Stream type. Sort of. |
---|
335 | * |
---|
336 | * Use of this type serves a couple purposes: |
---|
337 | * - Buffer/buflen pairs are passed all around everywhere. This turns |
---|
338 | * that into one value, as well as abstracting it slightly. |
---|
339 | * - Through the abstraction, it is possible to enable bounds checking |
---|
340 | * for robustness at the cost of performance. But a clean failure on |
---|
341 | * weird packets is much better than a segfault. |
---|
342 | * - I like having variables named "bs". |
---|
343 | * |
---|
344 | * Don't touch the insides of this struct. Or I'll have to kill you. |
---|
345 | * |
---|
346 | */ |
---|
347 | typedef struct aim_bstream_s { |
---|
348 | fu8_t *data; |
---|
349 | fu32_t len; |
---|
350 | fu32_t offset; |
---|
351 | } aim_bstream_t; |
---|
352 | |
---|
353 | typedef struct aim_frame_s { |
---|
354 | fu8_t hdrtype; /* defines which piece of the union to use */ |
---|
355 | union { |
---|
356 | struct { |
---|
357 | fu8_t type; |
---|
358 | flap_seqnum_t seqnum; |
---|
359 | } flap; |
---|
360 | struct { |
---|
361 | fu8_t magic[4]; /* ODC2 or OFT2 */ |
---|
362 | fu16_t hdrlen; |
---|
363 | fu16_t type; |
---|
364 | } rend; |
---|
365 | } hdr; |
---|
366 | aim_bstream_t data; /* payload stream */ |
---|
367 | fu8_t handled; /* 0 = new, !0 = been handled */ |
---|
368 | fu8_t nofree; /* 0 = free data on purge, 1 = only unlink */ |
---|
369 | aim_conn_t *conn; /* the connection it came in on... */ |
---|
370 | struct aim_frame_s *next; |
---|
371 | } aim_frame_t; |
---|
372 | |
---|
373 | typedef struct aim_msgcookie_s { |
---|
374 | fu8_t cookie[8]; |
---|
375 | int type; |
---|
376 | void *data; |
---|
377 | time_t addtime; |
---|
378 | struct aim_msgcookie_s *next; |
---|
379 | } aim_msgcookie_t; |
---|
380 | |
---|
381 | /* |
---|
382 | * AIM Session: The main client-data interface. |
---|
383 | * |
---|
384 | */ |
---|
385 | typedef struct aim_session_s { |
---|
386 | |
---|
387 | /* ---- Client Accessible ------------------------ */ |
---|
388 | |
---|
389 | /* Our screen name. */ |
---|
390 | char sn[MAXSNLEN+1]; |
---|
391 | |
---|
392 | /* |
---|
393 | * Pointer to anything the client wants to |
---|
394 | * explicitly associate with this session. |
---|
395 | * |
---|
396 | * This is for use in the callbacks mainly. In any |
---|
397 | * callback, you can access this with sess->aux_data. |
---|
398 | * |
---|
399 | */ |
---|
400 | void *aux_data; |
---|
401 | |
---|
402 | /* ---- Internal Use Only ------------------------ */ |
---|
403 | |
---|
404 | /* Connection information */ |
---|
405 | aim_conn_t *connlist; |
---|
406 | |
---|
407 | /* |
---|
408 | * Transmit/receive queues. |
---|
409 | * |
---|
410 | * These are only used when you don't use your own lowlevel |
---|
411 | * I/O. I don't suggest that you use libfaim's internal I/O. |
---|
412 | * Its really bad and the API/event model is quirky at best. |
---|
413 | * |
---|
414 | */ |
---|
415 | aim_frame_t *queue_outgoing; |
---|
416 | aim_frame_t *queue_incoming; |
---|
417 | |
---|
418 | /* |
---|
419 | * Tx Enqueuing function. |
---|
420 | * |
---|
421 | * This is how you override the transmit direction of libfaim's |
---|
422 | * internal I/O. This function will be called whenever it needs |
---|
423 | * to send something. |
---|
424 | * |
---|
425 | */ |
---|
426 | int (*tx_enqueue)(struct aim_session_s *, aim_frame_t *); |
---|
427 | |
---|
428 | void *modlistv; |
---|
429 | |
---|
430 | struct { |
---|
431 | char server[128]; |
---|
432 | char username[128]; |
---|
433 | char password[128]; |
---|
434 | } socksproxy; |
---|
435 | |
---|
436 | bool nonblocking; |
---|
437 | |
---|
438 | int debug; |
---|
439 | void (*debugcb)(struct aim_session_s *sess, int level, const char *format, va_list va); /* same as faim_debugging_callback_t */ |
---|
440 | |
---|
441 | /* |
---|
442 | * Outstanding snac handling |
---|
443 | * |
---|
444 | * XXX: Should these be per-connection? -mid |
---|
445 | */ |
---|
446 | void *snac_hash[FAIM_SNAC_HASH_SIZE]; |
---|
447 | aim_snacid_t snacid_next; |
---|
448 | |
---|
449 | aim_msgcookie_t *msgcookies; |
---|
450 | struct aim_icq_info *icq_info; |
---|
451 | struct aim_oft_info *oft_info; |
---|
452 | struct aim_authresp_info *authinfo; |
---|
453 | struct aim_emailinfo *emailinfo; |
---|
454 | |
---|
455 | struct { |
---|
456 | struct aim_userinfo_s *userinfo; |
---|
457 | struct userinfo_node *torequest; |
---|
458 | struct userinfo_node *requested; |
---|
459 | int waiting_for_response; |
---|
460 | } locate; |
---|
461 | |
---|
462 | /* Server-stored information (ssi) */ |
---|
463 | struct { |
---|
464 | int received_data; |
---|
465 | fu16_t numitems; |
---|
466 | struct aim_ssi_item *official; |
---|
467 | struct aim_ssi_item *local; |
---|
468 | struct aim_ssi_tmp *pending; |
---|
469 | time_t timestamp; |
---|
470 | int waiting_for_ack; |
---|
471 | } ssi; |
---|
472 | } aim_session_t; |
---|
473 | |
---|
474 | /* Valid for calling aim_icq_setstatus() and for aim_userinfo_t->icqinfo.status */ |
---|
475 | #define AIM_ICQ_STATE_NORMAL 0x00000000 |
---|
476 | #define AIM_ICQ_STATE_AWAY 0x00000001 |
---|
477 | #define AIM_ICQ_STATE_DND 0x00000002 |
---|
478 | #define AIM_ICQ_STATE_OUT 0x00000004 |
---|
479 | #define AIM_ICQ_STATE_BUSY 0x00000010 |
---|
480 | #define AIM_ICQ_STATE_CHAT 0x00000020 |
---|
481 | #define AIM_ICQ_STATE_INVISIBLE 0x00000100 |
---|
482 | #define AIM_ICQ_STATE_WEBAWARE 0x00010000 |
---|
483 | #define AIM_ICQ_STATE_HIDEIP 0x00020000 |
---|
484 | #define AIM_ICQ_STATE_BIRTHDAY 0x00080000 |
---|
485 | #define AIM_ICQ_STATE_DIRECTDISABLED 0x00100000 |
---|
486 | #define AIM_ICQ_STATE_ICQHOMEPAGE 0x00200000 |
---|
487 | #define AIM_ICQ_STATE_DIRECTREQUIREAUTH 0x10000000 |
---|
488 | #define AIM_ICQ_STATE_DIRECTCONTACTLIST 0x20000000 |
---|
489 | |
---|
490 | |
---|
491 | |
---|
492 | /* |
---|
493 | * Get command from connections |
---|
494 | * |
---|
495 | * aim_get_commmand() is the libfaim lowlevel I/O in the receive direction. |
---|
496 | * XXX Make this easily overridable. |
---|
497 | * |
---|
498 | */ |
---|
499 | faim_export int aim_get_command(aim_session_t *, aim_conn_t *); |
---|
500 | |
---|
501 | /* |
---|
502 | * Dispatch commands that are in the rx queue. |
---|
503 | */ |
---|
504 | faim_export void aim_rxdispatch(aim_session_t *); |
---|
505 | |
---|
506 | faim_export int aim_debugconn_sendconnect(aim_session_t *sess, aim_conn_t *conn); |
---|
507 | |
---|
508 | faim_export int aim_logoff(aim_session_t *); |
---|
509 | |
---|
510 | #if !defined(FAIM_INTERNAL) || defined(FAIM_INTERNAL_INSANE) |
---|
511 | /* the library should never call aim_conn_kill */ |
---|
512 | faim_export void aim_conn_kill(aim_session_t *sess, aim_conn_t **deadconn); |
---|
513 | #endif |
---|
514 | |
---|
515 | typedef int (*aim_rxcallback_t)(aim_session_t *, aim_frame_t *, ...); |
---|
516 | |
---|
517 | |
---|
518 | /* auth.c */ |
---|
519 | struct aim_clientrelease { |
---|
520 | char *name; |
---|
521 | fu32_t build; |
---|
522 | char *url; |
---|
523 | char *info; |
---|
524 | }; |
---|
525 | |
---|
526 | struct aim_authresp_info { |
---|
527 | char *sn; |
---|
528 | fu16_t errorcode; |
---|
529 | char *errorurl; |
---|
530 | fu16_t regstatus; |
---|
531 | char *email; |
---|
532 | char *bosip; |
---|
533 | fu16_t cookielen; |
---|
534 | fu8_t *cookie; |
---|
535 | char *chpassurl; |
---|
536 | struct aim_clientrelease latestrelease; |
---|
537 | struct aim_clientrelease latestbeta; |
---|
538 | }; |
---|
539 | |
---|
540 | /* Callback data for redirect. */ |
---|
541 | struct aim_redirect_data { |
---|
542 | fu16_t group; |
---|
543 | const char *ip; |
---|
544 | fu16_t cookielen; |
---|
545 | const fu8_t *cookie; |
---|
546 | struct { /* group == AIM_CONN_TYPE_CHAT */ |
---|
547 | fu16_t exchange; |
---|
548 | const char *room; |
---|
549 | fu16_t instance; |
---|
550 | } chat; |
---|
551 | }; |
---|
552 | |
---|
553 | faim_export int aim_clientready(aim_session_t *sess, aim_conn_t *conn); |
---|
554 | faim_export int aim_sendflapver(aim_session_t *sess, aim_conn_t *conn); |
---|
555 | faim_export int aim_request_login(aim_session_t *sess, aim_conn_t *conn, const char *sn); |
---|
556 | faim_export int aim_send_login(aim_session_t *, aim_conn_t *, const char *, const char *, struct client_info_s *, const char *key); |
---|
557 | faim_export void aim_purge_rxqueue(aim_session_t *); |
---|
558 | faim_export void aim_cleansnacs(aim_session_t *, int maxage); |
---|
559 | |
---|
560 | #define AIM_TX_QUEUED 0 /* default */ |
---|
561 | #define AIM_TX_IMMEDIATE 1 |
---|
562 | #define AIM_TX_USER 2 |
---|
563 | faim_export int aim_tx_setenqueue(aim_session_t *sess, int what, int (*func)(aim_session_t *, aim_frame_t *)); |
---|
564 | |
---|
565 | faim_export int aim_tx_flushqueue(aim_session_t *); |
---|
566 | faim_export void aim_tx_purgequeue(aim_session_t *); |
---|
567 | |
---|
568 | faim_export int aim_conn_setlatency(aim_conn_t *conn, int newval); |
---|
569 | |
---|
570 | faim_export int aim_conn_addhandler(aim_session_t *, aim_conn_t *conn, fu16_t family, fu16_t type, aim_rxcallback_t newhandler, fu16_t flags); |
---|
571 | faim_export int aim_clearhandlers(aim_conn_t *conn); |
---|
572 | |
---|
573 | faim_export aim_conn_t *aim_conn_findbygroup(aim_session_t *sess, fu16_t group); |
---|
574 | faim_export aim_session_t *aim_conn_getsess(aim_conn_t *conn); |
---|
575 | faim_export void aim_conn_close(aim_conn_t *deadconn); |
---|
576 | faim_export aim_conn_t *aim_newconn(aim_session_t *, int type, const char *dest); |
---|
577 | faim_export int aim_conngetmaxfd(aim_session_t *); |
---|
578 | faim_export aim_conn_t *aim_select(aim_session_t *, struct timeval *, int *); |
---|
579 | faim_export int aim_conn_in_sess(aim_session_t *sess, aim_conn_t *conn); |
---|
580 | faim_export int aim_conn_isready(aim_conn_t *); |
---|
581 | faim_export int aim_conn_setstatus(aim_conn_t *, int); |
---|
582 | faim_export int aim_conn_completeconnect(aim_session_t *sess, aim_conn_t *conn); |
---|
583 | faim_export int aim_conn_isconnecting(aim_conn_t *conn); |
---|
584 | |
---|
585 | typedef void (*faim_debugging_callback_t)(aim_session_t *sess, int level, const char *format, va_list va); |
---|
586 | faim_export int aim_setdebuggingcb(aim_session_t *sess, faim_debugging_callback_t); |
---|
587 | faim_export void aim_session_init(aim_session_t *, bool nonblocking, int debuglevel); |
---|
588 | faim_export void aim_session_kill(aim_session_t *); |
---|
589 | faim_export void aim_setupproxy(aim_session_t *sess, const char *server, const char *username, const char *password); |
---|
590 | faim_export aim_conn_t *aim_getconn_type(aim_session_t *, int type); |
---|
591 | faim_export aim_conn_t *aim_getconn_type_all(aim_session_t *, int type); |
---|
592 | faim_export aim_conn_t *aim_getconn_fd(aim_session_t *, int fd); |
---|
593 | |
---|
594 | |
---|
595 | |
---|
596 | /* 0x0001 - service.c */ |
---|
597 | faim_export int aim_srv_setavailmsg(aim_session_t *sess, char *msg); |
---|
598 | faim_export int aim_srv_setidle(aim_session_t *sess, fu32_t idletime); |
---|
599 | |
---|
600 | |
---|
601 | |
---|
602 | /* misc.c */ |
---|
603 | |
---|
604 | #define AIM_VISIBILITYCHANGE_PERMITADD 0x05 |
---|
605 | #define AIM_VISIBILITYCHANGE_PERMITREMOVE 0x06 |
---|
606 | #define AIM_VISIBILITYCHANGE_DENYADD 0x07 |
---|
607 | #define AIM_VISIBILITYCHANGE_DENYREMOVE 0x08 |
---|
608 | |
---|
609 | #define AIM_PRIVFLAGS_ALLOWIDLE 0x01 |
---|
610 | #define AIM_PRIVFLAGS_ALLOWMEMBERSINCE 0x02 |
---|
611 | |
---|
612 | #define AIM_WARN_ANON 0x01 |
---|
613 | |
---|
614 | faim_export int aim_sendpauseack(aim_session_t *sess, aim_conn_t *conn); |
---|
615 | faim_export int aim_nop(aim_session_t *, aim_conn_t *); |
---|
616 | faim_export int aim_flap_nop(aim_session_t *sess, aim_conn_t *conn); |
---|
617 | faim_export int aim_bos_changevisibility(aim_session_t *, aim_conn_t *, int, const char *); |
---|
618 | faim_export int aim_bos_setgroupperm(aim_session_t *, aim_conn_t *, fu32_t mask); |
---|
619 | faim_export int aim_bos_setprivacyflags(aim_session_t *, aim_conn_t *, fu32_t); |
---|
620 | faim_export int aim_reqpersonalinfo(aim_session_t *, aim_conn_t *); |
---|
621 | faim_export int aim_reqservice(aim_session_t *, aim_conn_t *, fu16_t); |
---|
622 | faim_export int aim_bos_reqrights(aim_session_t *, aim_conn_t *); |
---|
623 | faim_export int aim_setextstatus(aim_session_t *sess, fu32_t status); |
---|
624 | |
---|
625 | #define AIM_CLIENTTYPE_UNKNOWN 0x0000 |
---|
626 | #define AIM_CLIENTTYPE_MC 0x0001 |
---|
627 | #define AIM_CLIENTTYPE_WINAIM 0x0002 |
---|
628 | #define AIM_CLIENTTYPE_WINAIM41 0x0003 |
---|
629 | #define AIM_CLIENTTYPE_AOL_TOC 0x0004 |
---|
630 | faim_export fu16_t aim_im_fingerprint(const fu8_t *msghdr, int len); |
---|
631 | |
---|
632 | #define AIM_RATE_CODE_CHANGE 0x0001 |
---|
633 | #define AIM_RATE_CODE_WARNING 0x0002 |
---|
634 | #define AIM_RATE_CODE_LIMIT 0x0003 |
---|
635 | #define AIM_RATE_CODE_CLEARLIMIT 0x0004 |
---|
636 | faim_export int aim_ads_requestads(aim_session_t *sess, aim_conn_t *conn); |
---|
637 | |
---|
638 | |
---|
639 | |
---|
640 | /* im.c */ |
---|
641 | #define AIM_OFT_SUBTYPE_SEND_FILE 0x0001 |
---|
642 | #define AIM_OFT_SUBTYPE_SEND_DIR 0x0002 |
---|
643 | #define AIM_OFT_SUBTYPE_GET_FILE 0x0011 |
---|
644 | #define AIM_OPT_SUBTYPE_GET_LIST 0x0012 |
---|
645 | |
---|
646 | #define AIM_TRANSFER_DENY_NOTSUPPORTED 0x0000 |
---|
647 | #define AIM_TRANSFER_DENY_DECLINE 0x0001 |
---|
648 | #define AIM_TRANSFER_DENY_NOTACCEPTING 0x0002 |
---|
649 | |
---|
650 | #define AIM_IMPARAM_FLAG_CHANMSGS_ALLOWED 0x00000001 |
---|
651 | #define AIM_IMPARAM_FLAG_MISSEDCALLS_ENABLED 0x00000002 |
---|
652 | |
---|
653 | /* This is what the server will give you if you don't set them yourself. */ |
---|
654 | #define AIM_IMPARAM_DEFAULTS { \ |
---|
655 | 0, \ |
---|
656 | AIM_IMPARAM_FLAG_CHANMSGS_ALLOWED | AIM_IMPARAM_FLAG_MISSEDCALLS_ENABLED, \ |
---|
657 | 512, /* !! Note how small this is. */ \ |
---|
658 | (99.9)*10, (99.9)*10, \ |
---|
659 | 1000 /* !! And how large this is. */ \ |
---|
660 | } |
---|
661 | |
---|
662 | /* This is what most AIM versions use. */ |
---|
663 | #define AIM_IMPARAM_REASONABLE { \ |
---|
664 | 0, \ |
---|
665 | AIM_IMPARAM_FLAG_CHANMSGS_ALLOWED | AIM_IMPARAM_FLAG_MISSEDCALLS_ENABLED, \ |
---|
666 | 8000, \ |
---|
667 | (99.9)*10, (99.9)*10, \ |
---|
668 | 0 \ |
---|
669 | } |
---|
670 | |
---|
671 | struct aim_icbmparameters { |
---|
672 | fu16_t maxchan; |
---|
673 | fu32_t flags; /* AIM_IMPARAM_FLAG_ */ |
---|
674 | fu16_t maxmsglen; /* message size that you will accept */ |
---|
675 | fu16_t maxsenderwarn; /* this and below are *10 (999=99.9%) */ |
---|
676 | fu16_t maxrecverwarn; |
---|
677 | fu32_t minmsginterval; /* in milliseconds? */ |
---|
678 | }; |
---|
679 | |
---|
680 | struct aim_chat_roominfo { |
---|
681 | fu16_t exchange; |
---|
682 | char *name; |
---|
683 | fu16_t instance; |
---|
684 | }; |
---|
685 | |
---|
686 | #define AIM_IMFLAGS_AWAY 0x0001 /* mark as an autoreply */ |
---|
687 | #define AIM_IMFLAGS_ACK 0x0002 /* request a receipt notice */ |
---|
688 | #define AIM_IMFLAGS_UNICODE 0x0004 |
---|
689 | #define AIM_IMFLAGS_ISO_8859_1 0x0008 |
---|
690 | #define AIM_IMFLAGS_BUDDYREQ 0x0010 /* buddy icon requested */ |
---|
691 | #define AIM_IMFLAGS_HASICON 0x0020 /* already has icon */ |
---|
692 | #define AIM_IMFLAGS_SUBENC_MACINTOSH 0x0040 /* damn that Steve Jobs! */ |
---|
693 | #define AIM_IMFLAGS_CUSTOMFEATURES 0x0080 /* features field present */ |
---|
694 | #define AIM_IMFLAGS_EXTDATA 0x0100 |
---|
695 | #define AIM_IMFLAGS_X 0x0200 |
---|
696 | #define AIM_IMFLAGS_MULTIPART 0x0400 /* ->mpmsg section valid */ |
---|
697 | #define AIM_IMFLAGS_OFFLINE 0x0800 /* send to offline user */ |
---|
698 | #define AIM_IMFLAGS_TYPINGNOT 0x1000 /* typing notification */ |
---|
699 | |
---|
700 | /* |
---|
701 | * Multipart message structures. |
---|
702 | */ |
---|
703 | typedef struct aim_mpmsg_section_s { |
---|
704 | fu16_t charset; |
---|
705 | fu16_t charsubset; |
---|
706 | fu8_t *data; |
---|
707 | fu16_t datalen; |
---|
708 | struct aim_mpmsg_section_s *next; |
---|
709 | } aim_mpmsg_section_t; |
---|
710 | |
---|
711 | typedef struct aim_mpmsg_s { |
---|
712 | int numparts; |
---|
713 | aim_mpmsg_section_t *parts; |
---|
714 | } aim_mpmsg_t; |
---|
715 | |
---|
716 | faim_export int aim_mpmsg_init(aim_session_t *sess, aim_mpmsg_t *mpm); |
---|
717 | faim_export int aim_mpmsg_addraw(aim_session_t *sess, aim_mpmsg_t *mpm, fu16_t charset, fu16_t charsubset, const fu8_t *data, fu16_t datalen); |
---|
718 | faim_export int aim_mpmsg_addascii(aim_session_t *sess, aim_mpmsg_t *mpm, const char *ascii); |
---|
719 | faim_export int aim_mpmsg_addunicode(aim_session_t *sess, aim_mpmsg_t *mpm, const fu16_t *unicode, fu16_t unicodelen); |
---|
720 | faim_export void aim_mpmsg_free(aim_session_t *sess, aim_mpmsg_t *mpm); |
---|
721 | |
---|
722 | /* |
---|
723 | * Arguments to aim_send_im_ext(). |
---|
724 | * |
---|
725 | * This is really complicated. But immensely versatile. |
---|
726 | * |
---|
727 | */ |
---|
728 | struct aim_sendimext_args { |
---|
729 | |
---|
730 | /* These are _required_ */ |
---|
731 | const char *destsn; |
---|
732 | fu32_t flags; /* often 0 */ |
---|
733 | |
---|
734 | /* Only required if not using multipart messages */ |
---|
735 | const char *msg; |
---|
736 | int msglen; |
---|
737 | |
---|
738 | /* Required if ->msg is not provided */ |
---|
739 | aim_mpmsg_t *mpmsg; |
---|
740 | |
---|
741 | /* Only used if AIM_IMFLAGS_HASICON is set */ |
---|
742 | fu32_t iconlen; |
---|
743 | time_t iconstamp; |
---|
744 | fu32_t iconsum; |
---|
745 | |
---|
746 | /* Only used if AIM_IMFLAGS_CUSTOMFEATURES is set */ |
---|
747 | fu8_t *features; |
---|
748 | fu8_t featureslen; |
---|
749 | |
---|
750 | /* Only used if AIM_IMFLAGS_CUSTOMCHARSET is set and mpmsg not used */ |
---|
751 | fu16_t charset; |
---|
752 | fu16_t charsubset; |
---|
753 | }; |
---|
754 | |
---|
755 | /* |
---|
756 | * Arguments to aim_send_rtfmsg(). |
---|
757 | */ |
---|
758 | struct aim_sendrtfmsg_args { |
---|
759 | const char *destsn; |
---|
760 | fu32_t fgcolor; |
---|
761 | fu32_t bgcolor; |
---|
762 | const char *rtfmsg; /* must be in RTF */ |
---|
763 | }; |
---|
764 | |
---|
765 | /* |
---|
766 | * This information is provided in the Incoming ICBM callback for |
---|
767 | * Channel 1 ICBM's. |
---|
768 | * |
---|
769 | * Note that although CUSTOMFEATURES and CUSTOMCHARSET say they |
---|
770 | * are optional, both are always set by the current libfaim code. |
---|
771 | * That may or may not change in the future. It is mainly for |
---|
772 | * consistency with aim_sendimext_args. |
---|
773 | * |
---|
774 | * Multipart messages require some explanation. If you want to use them, |
---|
775 | * I suggest you read all the comments in im.c. |
---|
776 | * |
---|
777 | */ |
---|
778 | struct aim_incomingim_ch1_args { |
---|
779 | |
---|
780 | /* Always provided */ |
---|
781 | aim_mpmsg_t mpmsg; |
---|
782 | fu32_t icbmflags; /* some flags apply only to ->msg, not all mpmsg */ |
---|
783 | |
---|
784 | /* Only provided if message has a human-readable section */ |
---|
785 | char *msg; |
---|
786 | int msglen; |
---|
787 | |
---|
788 | /* Only provided if AIM_IMFLAGS_HASICON is set */ |
---|
789 | time_t iconstamp; |
---|
790 | fu32_t iconlen; |
---|
791 | fu16_t iconsum; |
---|
792 | |
---|
793 | /* Only provided if AIM_IMFLAGS_CUSTOMFEATURES is set */ |
---|
794 | fu8_t *features; |
---|
795 | fu8_t featureslen; |
---|
796 | |
---|
797 | /* Only provided if AIM_IMFLAGS_EXTDATA is set */ |
---|
798 | fu8_t extdatalen; |
---|
799 | fu8_t *extdata; |
---|
800 | |
---|
801 | /* Only used if AIM_IMFLAGS_CUSTOMCHARSET is set */ |
---|
802 | fu16_t charset; |
---|
803 | fu16_t charsubset; |
---|
804 | }; |
---|
805 | |
---|
806 | /* Valid values for channel 2 args->status */ |
---|
807 | #define AIM_RENDEZVOUS_PROPOSE 0x0000 |
---|
808 | #define AIM_RENDEZVOUS_CANCEL 0x0001 |
---|
809 | #define AIM_RENDEZVOUS_ACCEPT 0x0002 |
---|
810 | |
---|
811 | struct aim_incomingim_ch2_args { |
---|
812 | fu16_t status; |
---|
813 | fu8_t cookie[8]; |
---|
814 | int reqclass; |
---|
815 | const char *proxyip; |
---|
816 | const char *clientip; |
---|
817 | const char *verifiedip; |
---|
818 | fu16_t port; |
---|
819 | fu16_t errorcode; |
---|
820 | const char *msg; /* invite message or file description */ |
---|
821 | const char *encoding; |
---|
822 | const char *language; |
---|
823 | union { |
---|
824 | struct { |
---|
825 | fu32_t checksum; |
---|
826 | fu32_t length; |
---|
827 | time_t timestamp; |
---|
828 | fu8_t *icon; |
---|
829 | } icon; |
---|
830 | struct { |
---|
831 | struct aim_chat_roominfo roominfo; |
---|
832 | } chat; |
---|
833 | struct { |
---|
834 | fu32_t fgcolor; |
---|
835 | fu32_t bgcolor; |
---|
836 | const char *rtfmsg; |
---|
837 | } rtfmsg; |
---|
838 | struct { |
---|
839 | fu16_t subtype; |
---|
840 | fu16_t totfiles; |
---|
841 | fu32_t totsize; |
---|
842 | char *filename; |
---|
843 | } sendfile; |
---|
844 | } info; |
---|
845 | void *destructor; /* used internally only */ |
---|
846 | }; |
---|
847 | |
---|
848 | /* Valid values for channel 4 args->type */ |
---|
849 | #define AIM_ICQMSG_AUTHREQUEST 0x0006 |
---|
850 | #define AIM_ICQMSG_AUTHDENIED 0x0007 |
---|
851 | #define AIM_ICQMSG_AUTHGRANTED 0x0008 |
---|
852 | |
---|
853 | struct aim_incomingim_ch4_args { |
---|
854 | fu32_t uin; /* Of the sender of the ICBM */ |
---|
855 | fu8_t type; |
---|
856 | fu8_t flags; |
---|
857 | char *msg; /* Reason for auth request, deny, or accept */ |
---|
858 | int msglen; |
---|
859 | }; |
---|
860 | |
---|
861 | /* SNAC sending functions */ |
---|
862 | /* 0x0002 */ faim_export int aim_im_setparams(aim_session_t *sess, struct aim_icbmparameters *params); |
---|
863 | /* 0x0004 */ faim_export int aim_im_reqparams(aim_session_t *sess); |
---|
864 | /* 0x0006 */ faim_export int aim_im_sendch1_ext(aim_session_t *sess, struct aim_sendimext_args *args); |
---|
865 | /* 0x0006 */ faim_export int aim_im_sendch1(aim_session_t *, const char *destsn, fu16_t flags, const char *msg); |
---|
866 | /* 0x0006 */ faim_export int aim_im_sendch2_icon(aim_session_t *sess, const char *sn, const fu8_t *icon, int iconlen, time_t stamp, fu16_t iconsum); |
---|
867 | /* 0x0006 */ faim_export int aim_im_sendch2_rtfmsg(aim_session_t *sess, struct aim_sendrtfmsg_args *args); |
---|
868 | /* 0x0006 */ faim_export int aim_im_sendch2_odcrequest(aim_session_t *sess, fu8_t *cookie, const char *sn, const fu8_t *ip, fu16_t port); |
---|
869 | /* 0x0006 */ faim_export int aim_im_sendch2_sendfile_ask(aim_session_t *sess, struct aim_oft_info *oft_info); |
---|
870 | /* 0x0006 */ faim_export int aim_im_sendch2_sendfile_accept(aim_session_t *sess, struct aim_oft_info *info); |
---|
871 | /* 0x0006 */ faim_export int aim_im_sendch2_sendfile_cancel(aim_session_t *sess, struct aim_oft_info *oft_info); |
---|
872 | /* 0x0006 */ faim_export int aim_im_sendch2_geticqaway(aim_session_t *sess, const char *sn, int type); |
---|
873 | /* 0x0006 */ faim_export int aim_im_sendch4(aim_session_t *sess, char *sn, fu16_t type, fu8_t *message); |
---|
874 | /* 0x0008 */ faim_export int aim_im_warn(aim_session_t *sess, aim_conn_t *conn, const char *destsn, fu32_t flags); |
---|
875 | /* 0x000b */ faim_export int aim_im_denytransfer(aim_session_t *sess, const char *sender, const char *cookie, fu16_t code); |
---|
876 | /* 0x0014 */ faim_export int aim_im_sendmtn(aim_session_t *sess, fu16_t type1, const char *sn, fu16_t type2); |
---|
877 | |
---|
878 | |
---|
879 | |
---|
880 | /* ft.c */ |
---|
881 | struct aim_fileheader_t { |
---|
882 | #if 0 |
---|
883 | char magic[4]; /* 0 */ |
---|
884 | fu16_t hdrlen; /* 4 */ |
---|
885 | fu16_t hdrtype; /* 6 */ |
---|
886 | #endif |
---|
887 | char bcookie[8]; /* 8 */ |
---|
888 | fu16_t encrypt; /* 16 */ |
---|
889 | fu16_t compress; /* 18 */ |
---|
890 | fu16_t totfiles; /* 20 */ |
---|
891 | fu16_t filesleft; /* 22 */ |
---|
892 | fu16_t totparts; /* 24 */ |
---|
893 | fu16_t partsleft; /* 26 */ |
---|
894 | fu32_t totsize; /* 28 */ |
---|
895 | fu32_t size; /* 32 */ |
---|
896 | fu32_t modtime; /* 36 */ |
---|
897 | fu32_t checksum; /* 40 */ |
---|
898 | fu32_t rfrcsum; /* 44 */ |
---|
899 | fu32_t rfsize; /* 48 */ |
---|
900 | fu32_t cretime; /* 52 */ |
---|
901 | fu32_t rfcsum; /* 56 */ |
---|
902 | fu32_t nrecvd; /* 60 */ |
---|
903 | fu32_t recvcsum; /* 64 */ |
---|
904 | fu8_t idstring[32]; /* 68 */ |
---|
905 | fu8_t flags; /* 100 */ |
---|
906 | fu8_t lnameoffset; /* 101 */ |
---|
907 | fu8_t lsizeoffset; /* 102 */ |
---|
908 | char dummy[69]; /* 103 */ |
---|
909 | char macfileinfo[16]; /* 172 */ |
---|
910 | fu16_t nencode; /* 188 */ |
---|
911 | fu16_t nlanguage; /* 190 */ |
---|
912 | char name[64]; /* 192 */ |
---|
913 | /* 256 */ |
---|
914 | }; |
---|
915 | |
---|
916 | struct aim_oft_info { |
---|
917 | char cookie[8]; |
---|
918 | char *sn; |
---|
919 | char *proxyip; |
---|
920 | char *clientip; |
---|
921 | char *verifiedip; |
---|
922 | fu16_t port; |
---|
923 | aim_conn_t *conn; |
---|
924 | aim_session_t *sess; |
---|
925 | struct aim_fileheader_t fh; |
---|
926 | struct aim_oft_info *next; |
---|
927 | }; |
---|
928 | |
---|
929 | faim_export fu32_t aim_oft_checksum_chunk(const fu8_t *buffer, int bufferlen, fu32_t prevcheck); |
---|
930 | faim_export fu32_t aim_oft_checksum_file(char *filename); |
---|
931 | faim_export int aim_handlerendconnect(aim_session_t *sess, aim_conn_t *cur); |
---|
932 | faim_export int aim_odc_send_typing(aim_session_t *sess, aim_conn_t *conn, int typing); |
---|
933 | faim_export int aim_odc_send_im(aim_session_t *sess, aim_conn_t *conn, const char *msg, int len, int encoding, int isawaymsg); |
---|
934 | faim_export const char *aim_odc_getsn(aim_conn_t *conn); |
---|
935 | faim_export aim_conn_t *aim_odc_getconn(aim_session_t *sess, const char *sn); |
---|
936 | faim_export aim_conn_t *aim_odc_initiate(aim_session_t *sess, const char *sn); |
---|
937 | faim_export aim_conn_t *aim_odc_connect(aim_session_t *sess, const char *sn, const char *addr, const fu8_t *cookie); |
---|
938 | |
---|
939 | faim_export struct aim_oft_info *aim_oft_createinfo(aim_session_t *sess, const fu8_t *cookie, const char *sn, const char *ip, fu16_t port, fu32_t size, fu32_t modtime, char *filename); |
---|
940 | faim_export int aim_oft_destroyinfo(struct aim_oft_info *oft_info); |
---|
941 | faim_export int aim_sendfile_listen(aim_session_t *sess, struct aim_oft_info *oft_info); |
---|
942 | faim_export int aim_oft_sendheader(aim_session_t *sess, fu16_t type, struct aim_oft_info *oft_info); |
---|
943 | |
---|
944 | |
---|
945 | |
---|
946 | /* 0x0002 - locate.c */ |
---|
947 | /* |
---|
948 | * AIM User Info, Standard Form. |
---|
949 | */ |
---|
950 | #define AIM_FLAG_UNCONFIRMED 0x0001 /* "damned transients" */ |
---|
951 | #define AIM_FLAG_ADMINISTRATOR 0x0002 |
---|
952 | #define AIM_FLAG_AOL 0x0004 |
---|
953 | #define AIM_FLAG_OSCAR_PAY 0x0008 |
---|
954 | #define AIM_FLAG_FREE 0x0010 |
---|
955 | #define AIM_FLAG_AWAY 0x0020 |
---|
956 | #define AIM_FLAG_ICQ 0x0040 |
---|
957 | #define AIM_FLAG_WIRELESS 0x0080 |
---|
958 | #define AIM_FLAG_UNKNOWN100 0x0100 |
---|
959 | #define AIM_FLAG_UNKNOWN200 0x0200 |
---|
960 | #define AIM_FLAG_ACTIVEBUDDY 0x0400 |
---|
961 | #define AIM_FLAG_UNKNOWN800 0x0800 |
---|
962 | #define AIM_FLAG_ABINTERNAL 0x1000 |
---|
963 | #define AIM_FLAG_ALLUSERS 0x001f |
---|
964 | |
---|
965 | #define AIM_USERINFO_PRESENT_FLAGS 0x00000001 |
---|
966 | #define AIM_USERINFO_PRESENT_MEMBERSINCE 0x00000002 |
---|
967 | #define AIM_USERINFO_PRESENT_ONLINESINCE 0x00000004 |
---|
968 | #define AIM_USERINFO_PRESENT_IDLE 0x00000008 |
---|
969 | #define AIM_USERINFO_PRESENT_ICQEXTSTATUS 0x00000010 |
---|
970 | #define AIM_USERINFO_PRESENT_ICQIPADDR 0x00000020 |
---|
971 | #define AIM_USERINFO_PRESENT_ICQDATA 0x00000040 |
---|
972 | #define AIM_USERINFO_PRESENT_CAPABILITIES 0x00000080 |
---|
973 | #define AIM_USERINFO_PRESENT_SESSIONLEN 0x00000100 |
---|
974 | #define AIM_USERINFO_PRESENT_CREATETIME 0x00000200 |
---|
975 | |
---|
976 | struct userinfo_node { |
---|
977 | char *sn; |
---|
978 | struct userinfo_node *next; |
---|
979 | }; |
---|
980 | |
---|
981 | typedef struct aim_userinfo_s { |
---|
982 | char *sn; |
---|
983 | fu16_t warnlevel; /* evil percent * 10 (999 = 99.9%) */ |
---|
984 | fu16_t idletime; /* in seconds */ |
---|
985 | fu16_t flags; |
---|
986 | fu32_t createtime; /* time_t */ |
---|
987 | fu32_t membersince; /* time_t */ |
---|
988 | fu32_t onlinesince; /* time_t */ |
---|
989 | fu32_t sessionlen; /* in seconds */ |
---|
990 | fu32_t capabilities; |
---|
991 | struct { |
---|
992 | fu32_t status; |
---|
993 | fu32_t ipaddr; |
---|
994 | fu8_t crap[0x25]; /* until we figure it out... */ |
---|
995 | } icqinfo; |
---|
996 | fu32_t present; |
---|
997 | |
---|
998 | fu16_t iconcsumlen; |
---|
999 | fu8_t *iconcsum; |
---|
1000 | |
---|
1001 | char *info; |
---|
1002 | char *info_encoding; |
---|
1003 | fu16_t info_len; |
---|
1004 | |
---|
1005 | char *avail; |
---|
1006 | char *avail_encoding; |
---|
1007 | fu16_t avail_len; |
---|
1008 | |
---|
1009 | char *away; |
---|
1010 | char *away_encoding; |
---|
1011 | fu16_t away_len; |
---|
1012 | |
---|
1013 | struct aim_userinfo_s *next; |
---|
1014 | } aim_userinfo_t; |
---|
1015 | |
---|
1016 | #define AIM_CAPS_BUDDYICON 0x00000001 |
---|
1017 | #define AIM_CAPS_VOICE 0x00000002 |
---|
1018 | #define AIM_CAPS_DIRECTIM 0x00000004 |
---|
1019 | #define AIM_CAPS_CHAT 0x00000008 |
---|
1020 | #define AIM_CAPS_GETFILE 0x00000010 |
---|
1021 | #define AIM_CAPS_SENDFILE 0x00000020 |
---|
1022 | #define AIM_CAPS_GAMES 0x00000040 |
---|
1023 | #define AIM_CAPS_SAVESTOCKS 0x00000080 |
---|
1024 | #define AIM_CAPS_SENDBUDDYLIST 0x00000100 |
---|
1025 | #define AIM_CAPS_GAMES2 0x00000200 |
---|
1026 | #define AIM_CAPS_ICQ_DIRECT 0x00000400 |
---|
1027 | #define AIM_CAPS_APINFO 0x00000800 |
---|
1028 | #define AIM_CAPS_ICQRTF 0x00001000 |
---|
1029 | #define AIM_CAPS_EMPTY 0x00002000 |
---|
1030 | #define AIM_CAPS_ICQSERVERRELAY 0x00004000 |
---|
1031 | #define AIM_CAPS_ICQUTF8OLD 0x00008000 |
---|
1032 | #define AIM_CAPS_TRILLIANCRYPT 0x00010000 |
---|
1033 | #define AIM_CAPS_ICQUTF8 0x00020000 |
---|
1034 | #define AIM_CAPS_INTEROPERATE 0x00040000 |
---|
1035 | #define AIM_CAPS_ICHAT 0x00080000 |
---|
1036 | #define AIM_CAPS_HIPTOP 0x00100000 |
---|
1037 | #define AIM_CAPS_SECUREIM 0x00200000 |
---|
1038 | #define AIM_CAPS_SMS 0x00400000 |
---|
1039 | #define AIM_CAPS_GENERICUNKNOWN 0x00800000 |
---|
1040 | #define AIM_CAPS_VIDEO 0x01000000 |
---|
1041 | #define AIM_CAPS_LAST 0x02000000 |
---|
1042 | |
---|
1043 | #define AIM_SENDMEMBLOCK_FLAG_ISREQUEST 0 |
---|
1044 | #define AIM_SENDMEMBLOCK_FLAG_ISHASH 1 |
---|
1045 | |
---|
1046 | faim_export int aim_sendmemblock(aim_session_t *sess, aim_conn_t *conn, fu32_t offset, fu32_t len, const fu8_t *buf, fu8_t flag); |
---|
1047 | |
---|
1048 | struct aim_invite_priv { |
---|
1049 | char *sn; |
---|
1050 | char *roomname; |
---|
1051 | fu16_t exchange; |
---|
1052 | fu16_t instance; |
---|
1053 | }; |
---|
1054 | |
---|
1055 | #define AIM_COOKIETYPE_UNKNOWN 0x00 |
---|
1056 | #define AIM_COOKIETYPE_ICBM 0x01 |
---|
1057 | #define AIM_COOKIETYPE_ADS 0x02 |
---|
1058 | #define AIM_COOKIETYPE_BOS 0x03 |
---|
1059 | #define AIM_COOKIETYPE_IM 0x04 |
---|
1060 | #define AIM_COOKIETYPE_CHAT 0x05 |
---|
1061 | #define AIM_COOKIETYPE_CHATNAV 0x06 |
---|
1062 | #define AIM_COOKIETYPE_INVITE 0x07 |
---|
1063 | /* we'll move OFT up a bit to give breathing room. not like it really |
---|
1064 | * matters. */ |
---|
1065 | #define AIM_COOKIETYPE_OFTIM 0x10 |
---|
1066 | #define AIM_COOKIETYPE_OFTGET 0x11 |
---|
1067 | #define AIM_COOKIETYPE_OFTSEND 0x12 |
---|
1068 | #define AIM_COOKIETYPE_OFTVOICE 0x13 |
---|
1069 | #define AIM_COOKIETYPE_OFTIMAGE 0x14 |
---|
1070 | #define AIM_COOKIETYPE_OFTICON 0x15 |
---|
1071 | |
---|
1072 | faim_export aim_userinfo_t *aim_locate_finduserinfo(aim_session_t *sess, const char *sn); |
---|
1073 | |
---|
1074 | /* 0x0002 */ faim_export int aim_locate_reqrights(aim_session_t *sess); |
---|
1075 | /* 0x0004 */ faim_export int aim_locate_setprofile(aim_session_t *sess, const char *profile_encoding, const char *profile, const int profile_len, const char *awaymsg_encoding, const char *awaymsg, const int awaymsg_len); |
---|
1076 | /* 0x0004 */ faim_export int aim_locate_setcaps(aim_session_t *sess, fu32_t caps); |
---|
1077 | /* 0x0005 */ faim_export int aim_locate_getinfo(aim_session_t *sess, const char *, fu16_t); |
---|
1078 | /* 0x0009 */ faim_export int aim_locate_setdirinfo(aim_session_t *sess, const char *first, const char *middle, const char *last, const char *maiden, const char *nickname, const char *street, const char *city, const char *state, const char *zip, int country, fu16_t privacy); |
---|
1079 | /* 0x000b */ faim_export int aim_locate_000b(aim_session_t *sess, const char *sn); |
---|
1080 | /* 0x000f */ faim_export int aim_locate_setinterests(aim_session_t *sess, const char *interest1, const char *interest2, const char *interest3, const char *interest4, const char *interest5, fu16_t privacy); |
---|
1081 | /* 0x0015 */ faim_export int aim_locate_getinfoshort(aim_session_t *sess, const char *sn, fu32_t flags); |
---|
1082 | |
---|
1083 | |
---|
1084 | |
---|
1085 | /* 0x0003 - buddylist.c */ |
---|
1086 | /* 0x0002 */ faim_export int aim_buddylist_reqrights(aim_session_t *, aim_conn_t *); |
---|
1087 | /* 0x0004 */ faim_export int aim_buddylist_set(aim_session_t *, aim_conn_t *, const char *); |
---|
1088 | /* 0x0004 */ faim_export int aim_buddylist_addbuddy(aim_session_t *, aim_conn_t *, const char *); |
---|
1089 | /* 0x0005 */ faim_export int aim_buddylist_removebuddy(aim_session_t *, aim_conn_t *, const char *); |
---|
1090 | /* 0x000b */ faim_export int aim_buddylist_oncoming(aim_session_t *sess, aim_conn_t *conn, aim_userinfo_t *info); |
---|
1091 | /* 0x000c */ faim_export int aim_buddylist_offgoing(aim_session_t *sess, aim_conn_t *conn, const char *sn); |
---|
1092 | |
---|
1093 | |
---|
1094 | |
---|
1095 | /* 0x000a - search.c */ |
---|
1096 | faim_export int aim_search_address(aim_session_t *, aim_conn_t *, const char *); |
---|
1097 | |
---|
1098 | |
---|
1099 | |
---|
1100 | /* 0x000d - chatnav.c */ |
---|
1101 | /* 0x000e - chat.c */ |
---|
1102 | /* These apply to exchanges as well. */ |
---|
1103 | #define AIM_CHATROOM_FLAG_EVILABLE 0x0001 |
---|
1104 | #define AIM_CHATROOM_FLAG_NAV_ONLY 0x0002 |
---|
1105 | #define AIM_CHATROOM_FLAG_INSTANCING_ALLOWED 0x0004 |
---|
1106 | #define AIM_CHATROOM_FLAG_OCCUPANT_PEEK_ALLOWED 0x0008 |
---|
1107 | |
---|
1108 | struct aim_chat_exchangeinfo { |
---|
1109 | fu16_t number; |
---|
1110 | fu16_t flags; |
---|
1111 | char *name; |
---|
1112 | char *charset1; |
---|
1113 | char *lang1; |
---|
1114 | char *charset2; |
---|
1115 | char *lang2; |
---|
1116 | }; |
---|
1117 | |
---|
1118 | #define AIM_CHATFLAGS_NOREFLECT 0x0001 |
---|
1119 | #define AIM_CHATFLAGS_AWAY 0x0002 |
---|
1120 | faim_export int aim_chat_send_im(aim_session_t *sess, aim_conn_t *conn, fu16_t flags, const char *msg, int msglen); |
---|
1121 | faim_export int aim_chat_join(aim_session_t *sess, aim_conn_t *conn, fu16_t exchange, const char *roomname, fu16_t instance); |
---|
1122 | faim_export int aim_chat_attachname(aim_conn_t *conn, fu16_t exchange, const char *roomname, fu16_t instance); |
---|
1123 | faim_export char *aim_chat_getname(aim_conn_t *conn); |
---|
1124 | faim_export aim_conn_t *aim_chat_getconn(aim_session_t *, const char *name); |
---|
1125 | |
---|
1126 | faim_export int aim_chatnav_reqrights(aim_session_t *sess, aim_conn_t *conn); |
---|
1127 | |
---|
1128 | faim_export int aim_chat_invite(aim_session_t *sess, aim_conn_t *conn, const char *sn, const char *msg, fu16_t exchange, const char *roomname, fu16_t instance); |
---|
1129 | |
---|
1130 | faim_export int aim_chatnav_createroom(aim_session_t *sess, aim_conn_t *conn, const char *name, fu16_t exchange); |
---|
1131 | faim_export int aim_chat_leaveroom(aim_session_t *sess, const char *name); |
---|
1132 | |
---|
1133 | |
---|
1134 | |
---|
1135 | /* 0x000f - odir.c */ |
---|
1136 | struct aim_odir { |
---|
1137 | char *first; |
---|
1138 | char *last; |
---|
1139 | char *middle; |
---|
1140 | char *maiden; |
---|
1141 | char *email; |
---|
1142 | char *country; |
---|
1143 | char *state; |
---|
1144 | char *city; |
---|
1145 | char *sn; |
---|
1146 | char *interest; |
---|
1147 | char *nick; |
---|
1148 | char *zip; |
---|
1149 | char *region; |
---|
1150 | char *address; |
---|
1151 | struct aim_odir *next; |
---|
1152 | }; |
---|
1153 | |
---|
1154 | faim_export int aim_odir_email(aim_session_t *, const char *, const char *); |
---|
1155 | faim_export int aim_odir_name(aim_session_t *, const char *, const char *, const char *, const char *, const char *, const char *, const char *, const char *, const char *, const char *, const char *); |
---|
1156 | faim_export int aim_odir_interest(aim_session_t *, const char *, const char *); |
---|
1157 | |
---|
1158 | |
---|
1159 | |
---|
1160 | /* 0x0010 - icon.c */ |
---|
1161 | faim_export int aim_bart_upload(aim_session_t *sess, const fu8_t *icon, fu16_t iconlen); |
---|
1162 | faim_export int aim_bart_request(aim_session_t *sess, const char *sn, const fu8_t *iconstr, fu16_t iconstrlen); |
---|
1163 | |
---|
1164 | |
---|
1165 | |
---|
1166 | /* 0x0013 - ssi.c */ |
---|
1167 | #define AIM_SSI_TYPE_BUDDY 0x0000 |
---|
1168 | #define AIM_SSI_TYPE_GROUP 0x0001 |
---|
1169 | #define AIM_SSI_TYPE_PERMIT 0x0002 |
---|
1170 | #define AIM_SSI_TYPE_DENY 0x0003 |
---|
1171 | #define AIM_SSI_TYPE_PDINFO 0x0004 |
---|
1172 | #define AIM_SSI_TYPE_PRESENCEPREFS 0x0005 |
---|
1173 | #define AIM_SSI_TYPE_ICONINFO 0x0014 |
---|
1174 | |
---|
1175 | #define AIM_SSI_ACK_SUCCESS 0x0000 |
---|
1176 | #define AIM_SSI_ACK_ITEMNOTFOUND 0x0002 |
---|
1177 | #define AIM_SSI_ACK_IDNUMINUSE 0x000a |
---|
1178 | #define AIM_SSI_ACK_ATMAX 0x000c |
---|
1179 | #define AIM_SSI_ACK_INVALIDNAME 0x000d |
---|
1180 | #define AIM_SSI_ACK_AUTHREQUIRED 0x000e |
---|
1181 | |
---|
1182 | struct aim_ssi_item { |
---|
1183 | char *name; |
---|
1184 | fu16_t gid; |
---|
1185 | fu16_t bid; |
---|
1186 | fu16_t type; |
---|
1187 | struct aim_tlvlist_s *data; |
---|
1188 | struct aim_ssi_item *next; |
---|
1189 | }; |
---|
1190 | |
---|
1191 | struct aim_ssi_tmp { |
---|
1192 | fu16_t action; |
---|
1193 | fu16_t ack; |
---|
1194 | char *name; |
---|
1195 | struct aim_ssi_item *item; |
---|
1196 | struct aim_ssi_tmp *next; |
---|
1197 | }; |
---|
1198 | |
---|
1199 | /* These build the actual SNACs and queue them to be sent */ |
---|
1200 | /* 0x0002 */ faim_export int aim_ssi_reqrights(aim_session_t *sess); |
---|
1201 | /* 0x0004 */ faim_export int aim_ssi_reqdata(aim_session_t *sess); |
---|
1202 | /* 0x0005 */ faim_export int aim_ssi_reqifchanged(aim_session_t *sess, time_t localstamp, fu16_t localrev); |
---|
1203 | /* 0x0007 */ faim_export int aim_ssi_enable(aim_session_t *sess); |
---|
1204 | /* 0x0008 */ faim_export int aim_ssi_addmoddel(aim_session_t *sess); |
---|
1205 | /* 0x0011 */ faim_export int aim_ssi_modbegin(aim_session_t *sess); |
---|
1206 | /* 0x0012 */ faim_export int aim_ssi_modend(aim_session_t *sess); |
---|
1207 | /* 0x0014 */ faim_export int aim_ssi_sendauth(aim_session_t *sess, char *sn, char *msg); |
---|
1208 | /* 0x0018 */ faim_export int aim_ssi_sendauthrequest(aim_session_t *sess, char *sn, char *msg); |
---|
1209 | /* 0x001a */ faim_export int aim_ssi_sendauthreply(aim_session_t *sess, char *sn, fu8_t reply, char *msg); |
---|
1210 | |
---|
1211 | /* Client functions for retrieving SSI data */ |
---|
1212 | faim_export struct aim_ssi_item *aim_ssi_itemlist_find(struct aim_ssi_item *list, fu16_t gid, fu16_t bid); |
---|
1213 | faim_export struct aim_ssi_item *aim_ssi_itemlist_finditem(struct aim_ssi_item *list, const char *gn, const char *sn, fu16_t type); |
---|
1214 | faim_export struct aim_ssi_item *aim_ssi_itemlist_exists(struct aim_ssi_item *list, const char *sn); |
---|
1215 | faim_export char *aim_ssi_itemlist_findparentname(struct aim_ssi_item *list, const char *sn); |
---|
1216 | faim_export int aim_ssi_getpermdeny(struct aim_ssi_item *list); |
---|
1217 | faim_export fu32_t aim_ssi_getpresence(struct aim_ssi_item *list); |
---|
1218 | faim_export char *aim_ssi_getalias(struct aim_ssi_item *list, const char *gn, const char *sn); |
---|
1219 | faim_export char *aim_ssi_getcomment(struct aim_ssi_item *list, const char *gn, const char *sn); |
---|
1220 | faim_export int aim_ssi_waitingforauth(struct aim_ssi_item *list, const char *gn, const char *sn); |
---|
1221 | |
---|
1222 | /* Client functions for changing SSI data */ |
---|
1223 | faim_export int aim_ssi_addbuddy(aim_session_t *sess, const char *name, const char *group, const char *alias, const char *comment, const char *smsnum, int needauth); |
---|
1224 | faim_export int aim_ssi_addpermit(aim_session_t *sess, const char *name); |
---|
1225 | faim_export int aim_ssi_adddeny(aim_session_t *sess, const char *name); |
---|
1226 | faim_export int aim_ssi_delbuddy(aim_session_t *sess, const char *name, const char *group); |
---|
1227 | faim_export int aim_ssi_delpermit(aim_session_t *sess, const char *name); |
---|
1228 | faim_export int aim_ssi_deldeny(aim_session_t *sess, const char *name); |
---|
1229 | faim_export int aim_ssi_movebuddy(aim_session_t *sess, const char *oldgn, const char *newgn, const char *sn); |
---|
1230 | faim_export int aim_ssi_aliasbuddy(aim_session_t *sess, const char *gn, const char *sn, const char *alias); |
---|
1231 | faim_export int aim_ssi_editcomment(aim_session_t *sess, const char *gn, const char *sn, const char *alias); |
---|
1232 | faim_export int aim_ssi_rename_group(aim_session_t *sess, const char *oldgn, const char *newgn); |
---|
1233 | faim_export int aim_ssi_cleanlist(aim_session_t *sess); |
---|
1234 | faim_export int aim_ssi_deletelist(aim_session_t *sess); |
---|
1235 | faim_export int aim_ssi_setpermdeny(aim_session_t *sess, fu8_t permdeny, fu32_t vismask); |
---|
1236 | faim_export int aim_ssi_setpresence(aim_session_t *sess, fu32_t presence); |
---|
1237 | faim_export int aim_ssi_seticon(aim_session_t *sess, fu8_t *iconsum, fu16_t iconsumlen); |
---|
1238 | faim_export int aim_ssi_delicon(aim_session_t *sess); |
---|
1239 | |
---|
1240 | |
---|
1241 | |
---|
1242 | /* 0x0015 - icq.c */ |
---|
1243 | #define AIM_ICQ_INFO_SIMPLE 0x001 |
---|
1244 | #define AIM_ICQ_INFO_SUMMARY 0x002 |
---|
1245 | #define AIM_ICQ_INFO_EMAIL 0x004 |
---|
1246 | #define AIM_ICQ_INFO_PERSONAL 0x008 |
---|
1247 | #define AIM_ICQ_INFO_ADDITIONAL 0x010 |
---|
1248 | #define AIM_ICQ_INFO_WORK 0x020 |
---|
1249 | #define AIM_ICQ_INFO_INTERESTS 0x040 |
---|
1250 | #define AIM_ICQ_INFO_ORGS 0x080 |
---|
1251 | #define AIM_ICQ_INFO_UNKNOWN 0x100 |
---|
1252 | #define AIM_ICQ_INFO_HAVEALL 0x1ff |
---|
1253 | |
---|
1254 | struct aim_icq_offlinemsg { |
---|
1255 | fu32_t sender; |
---|
1256 | fu16_t year; |
---|
1257 | fu8_t month, day, hour, minute; |
---|
1258 | fu8_t type; |
---|
1259 | fu8_t flags; |
---|
1260 | char *msg; |
---|
1261 | int msglen; |
---|
1262 | }; |
---|
1263 | |
---|
1264 | struct aim_icq_info { |
---|
1265 | fu16_t reqid; |
---|
1266 | |
---|
1267 | /* simple */ |
---|
1268 | fu32_t uin; |
---|
1269 | |
---|
1270 | /* general and "home" information (0x00c8) */ |
---|
1271 | char *nick; |
---|
1272 | char *first; |
---|
1273 | char *last; |
---|
1274 | char *email; |
---|
1275 | char *homecity; |
---|
1276 | char *homestate; |
---|
1277 | char *homephone; |
---|
1278 | char *homefax; |
---|
1279 | char *homeaddr; |
---|
1280 | char *mobile; |
---|
1281 | char *homezip; |
---|
1282 | fu16_t homecountry; |
---|
1283 | /* fu8_t timezone; |
---|
1284 | fu8_t hideemail; */ |
---|
1285 | |
---|
1286 | /* personal (0x00dc) */ |
---|
1287 | fu8_t age; |
---|
1288 | fu8_t unknown; |
---|
1289 | fu8_t gender; |
---|
1290 | char *personalwebpage; |
---|
1291 | fu16_t birthyear; |
---|
1292 | fu8_t birthmonth; |
---|
1293 | fu8_t birthday; |
---|
1294 | fu8_t language1; |
---|
1295 | fu8_t language2; |
---|
1296 | fu8_t language3; |
---|
1297 | |
---|
1298 | /* work (0x00d2) */ |
---|
1299 | char *workcity; |
---|
1300 | char *workstate; |
---|
1301 | char *workphone; |
---|
1302 | char *workfax; |
---|
1303 | char *workaddr; |
---|
1304 | char *workzip; |
---|
1305 | fu16_t workcountry; |
---|
1306 | char *workcompany; |
---|
1307 | char *workdivision; |
---|
1308 | char *workposition; |
---|
1309 | char *workwebpage; |
---|
1310 | |
---|
1311 | /* additional personal information (0x00e6) */ |
---|
1312 | char *info; |
---|
1313 | |
---|
1314 | /* email (0x00eb) */ |
---|
1315 | fu16_t numaddresses; |
---|
1316 | char **email2; |
---|
1317 | |
---|
1318 | /* we keep track of these in a linked list because we're 1337 */ |
---|
1319 | struct aim_icq_info *next; |
---|
1320 | }; |
---|
1321 | |
---|
1322 | faim_export int aim_icq_reqofflinemsgs(aim_session_t *sess); |
---|
1323 | faim_export int aim_icq_ackofflinemsgs(aim_session_t *sess); |
---|
1324 | faim_export int aim_icq_hideip(aim_session_t *sess); |
---|
1325 | faim_export int aim_icq_changepasswd(aim_session_t *sess, const char *passwd); |
---|
1326 | faim_export int aim_icq_getsimpleinfo(aim_session_t *sess, const char *uin); |
---|
1327 | faim_export int aim_icq_getalias(aim_session_t *sess, const char *uin); |
---|
1328 | faim_export int aim_icq_getallinfo(aim_session_t *sess, const char *uin); |
---|
1329 | |
---|
1330 | |
---|
1331 | |
---|
1332 | /* 0x0017 - auth.c */ |
---|
1333 | faim_export int aim_sendcookie(aim_session_t *, aim_conn_t *, const fu16_t length, const fu8_t *); |
---|
1334 | faim_export int aim_admin_changepasswd(aim_session_t *, aim_conn_t *, const char *newpw, const char *curpw); |
---|
1335 | faim_export int aim_admin_reqconfirm(aim_session_t *sess, aim_conn_t *conn); |
---|
1336 | faim_export int aim_admin_getinfo(aim_session_t *sess, aim_conn_t *conn, fu16_t info); |
---|
1337 | faim_export int aim_admin_setemail(aim_session_t *sess, aim_conn_t *conn, const char *newemail); |
---|
1338 | faim_export int aim_admin_setnick(aim_session_t *sess, aim_conn_t *conn, const char *newnick); |
---|
1339 | |
---|
1340 | |
---|
1341 | |
---|
1342 | /* 0x0018 - email.c */ |
---|
1343 | struct aim_emailinfo { |
---|
1344 | fu8_t *cookie16; |
---|
1345 | fu8_t *cookie8; |
---|
1346 | char *url; |
---|
1347 | fu16_t nummsgs; |
---|
1348 | fu8_t unread; |
---|
1349 | char *domain; |
---|
1350 | fu16_t flag; |
---|
1351 | struct aim_emailinfo *next; |
---|
1352 | }; |
---|
1353 | |
---|
1354 | faim_export int aim_email_sendcookies(aim_session_t *sess); |
---|
1355 | faim_export int aim_email_activate(aim_session_t *sess); |
---|
1356 | |
---|
1357 | |
---|
1358 | |
---|
1359 | #if defined(FAIM_INTERNAL) || defined(FAIM_NEED_TLV) |
---|
1360 | /* tlv.c - TLV handling */ |
---|
1361 | |
---|
1362 | /* TLV structure */ |
---|
1363 | typedef struct aim_tlv_s { |
---|
1364 | fu16_t type; |
---|
1365 | fu16_t length; |
---|
1366 | fu8_t *value; |
---|
1367 | } aim_tlv_t; |
---|
1368 | |
---|
1369 | /* TLV List structure */ |
---|
1370 | typedef struct aim_tlvlist_s { |
---|
1371 | aim_tlv_t *tlv; |
---|
1372 | struct aim_tlvlist_s *next; |
---|
1373 | } aim_tlvlist_t; |
---|
1374 | |
---|
1375 | /* TLV handling functions */ |
---|
1376 | faim_internal aim_tlv_t *aim_tlv_gettlv(aim_tlvlist_t *list, fu16_t type, const int nth); |
---|
1377 | faim_internal char *aim_tlv_getstr(aim_tlvlist_t *list, const fu16_t type, const int nth); |
---|
1378 | faim_internal fu8_t aim_tlv_get8(aim_tlvlist_t *list, const fu16_t type, const int nth); |
---|
1379 | faim_internal fu16_t aim_tlv_get16(aim_tlvlist_t *list, const fu16_t type, const int nth); |
---|
1380 | faim_internal fu32_t aim_tlv_get32(aim_tlvlist_t *list, const fu16_t type, const int nth); |
---|
1381 | |
---|
1382 | /* TLV list handling functions */ |
---|
1383 | faim_internal aim_tlvlist_t *aim_tlvlist_read(aim_bstream_t *bs); |
---|
1384 | faim_internal aim_tlvlist_t *aim_tlvlist_readnum(aim_bstream_t *bs, fu16_t num); |
---|
1385 | faim_internal aim_tlvlist_t *aim_tlvlist_readlen(aim_bstream_t *bs, fu16_t len); |
---|
1386 | faim_internal aim_tlvlist_t *aim_tlvlist_copy(aim_tlvlist_t *orig); |
---|
1387 | |
---|
1388 | faim_internal int aim_tlvlist_count(aim_tlvlist_t **list); |
---|
1389 | faim_internal int aim_tlvlist_size(aim_tlvlist_t **list); |
---|
1390 | faim_internal int aim_tlvlist_cmp(aim_tlvlist_t *one, aim_tlvlist_t *two); |
---|
1391 | faim_internal int aim_tlvlist_write(aim_bstream_t *bs, aim_tlvlist_t **list); |
---|
1392 | faim_internal void aim_tlvlist_free(aim_tlvlist_t **list); |
---|
1393 | |
---|
1394 | faim_internal int aim_tlvlist_add_raw(aim_tlvlist_t **list, const fu16_t type, const fu16_t length, const fu8_t *value); |
---|
1395 | faim_internal int aim_tlvlist_add_noval(aim_tlvlist_t **list, const fu16_t type); |
---|
1396 | faim_internal int aim_tlvlist_add_8(aim_tlvlist_t **list, const fu16_t type, const fu8_t value); |
---|
1397 | faim_internal int aim_tlvlist_add_16(aim_tlvlist_t **list, const fu16_t type, const fu16_t value); |
---|
1398 | faim_internal int aim_tlvlist_add_32(aim_tlvlist_t **list, const fu16_t type, const fu32_t value); |
---|
1399 | faim_internal int aim_tlvlist_add_caps(aim_tlvlist_t **list, const fu16_t type, const fu32_t caps); |
---|
1400 | faim_internal int aim_tlvlist_add_userinfo(aim_tlvlist_t **list, fu16_t type, aim_userinfo_t *userinfo); |
---|
1401 | faim_internal int aim_tlvlist_add_frozentlvlist(aim_tlvlist_t **list, fu16_t type, aim_tlvlist_t **tl); |
---|
1402 | |
---|
1403 | faim_internal int aim_tlvlist_replace_raw(aim_tlvlist_t **list, const fu16_t type, const fu16_t lenth, const fu8_t *value); |
---|
1404 | faim_internal int aim_tlvlist_replace_noval(aim_tlvlist_t **list, const fu16_t type); |
---|
1405 | faim_internal int aim_tlvlist_replace_8(aim_tlvlist_t **list, const fu16_t type, const fu8_t value); |
---|
1406 | faim_internal int aim_tlvlist_replace_16(aim_tlvlist_t **list, const fu16_t type, const fu16_t value); |
---|
1407 | faim_internal int aim_tlvlist_replace_32(aim_tlvlist_t **list, const fu16_t type, const fu32_t value); |
---|
1408 | |
---|
1409 | faim_internal void aim_tlvlist_remove(aim_tlvlist_t **list, const fu16_t type); |
---|
1410 | #endif /* FAIM_INTERNAL */ |
---|
1411 | |
---|
1412 | |
---|
1413 | |
---|
1414 | /* util.c */ |
---|
1415 | /* |
---|
1416 | * These are really ugly. You'd think this was LISP. I wish it was. |
---|
1417 | * |
---|
1418 | * XXX With the advent of bstream's, these should be removed to enforce |
---|
1419 | * their use. |
---|
1420 | * |
---|
1421 | */ |
---|
1422 | #define aimutil_put8(buf, data) ((*(buf) = (fu8_t)(data)&0xff),1) |
---|
1423 | #define aimutil_get8(buf) ((*(buf))&0xff) |
---|
1424 | #define aimutil_put16(buf, data) ( \ |
---|
1425 | (*(buf) = (fu8_t)((data)>>8)&0xff), \ |
---|
1426 | (*((buf)+1) = (fu8_t)(data)&0xff), \ |
---|
1427 | 2) |
---|
1428 | #define aimutil_get16(buf) ((((*(buf))<<8)&0xff00) + ((*((buf)+1)) & 0xff)) |
---|
1429 | #define aimutil_put32(buf, data) ( \ |
---|
1430 | (*((buf)) = (fu8_t)((data)>>24)&0xff), \ |
---|
1431 | (*((buf)+1) = (fu8_t)((data)>>16)&0xff), \ |
---|
1432 | (*((buf)+2) = (fu8_t)((data)>>8)&0xff), \ |
---|
1433 | (*((buf)+3) = (fu8_t)(data)&0xff), \ |
---|
1434 | 4) |
---|
1435 | #define aimutil_get32(buf) ((((*(buf))<<24)&0xff000000) + \ |
---|
1436 | (((*((buf)+1))<<16)&0x00ff0000) + \ |
---|
1437 | (((*((buf)+2))<< 8)&0x0000ff00) + \ |
---|
1438 | (((*((buf)+3) )&0x000000ff))) |
---|
1439 | |
---|
1440 | /* Little-endian versions (damn ICQ) */ |
---|
1441 | #define aimutil_putle8(buf, data) ( \ |
---|
1442 | (*(buf) = (fu8_t)(data) & 0xff), \ |
---|
1443 | 1) |
---|
1444 | #define aimutil_getle8(buf) ( \ |
---|
1445 | (*(buf)) & 0xff \ |
---|
1446 | ) |
---|
1447 | #define aimutil_putle16(buf, data) ( \ |
---|
1448 | (*((buf)+0) = (fu8_t)((data) >> 0) & 0xff), \ |
---|
1449 | (*((buf)+1) = (fu8_t)((data) >> 8) & 0xff), \ |
---|
1450 | 2) |
---|
1451 | #define aimutil_getle16(buf) ( \ |
---|
1452 | (((*((buf)+0)) << 0) & 0x00ff) + \ |
---|
1453 | (((*((buf)+1)) << 8) & 0xff00) \ |
---|
1454 | ) |
---|
1455 | #define aimutil_putle32(buf, data) ( \ |
---|
1456 | (*((buf)+0) = (fu8_t)((data) >> 0) & 0xff), \ |
---|
1457 | (*((buf)+1) = (fu8_t)((data) >> 8) & 0xff), \ |
---|
1458 | (*((buf)+2) = (fu8_t)((data) >> 16) & 0xff), \ |
---|
1459 | (*((buf)+3) = (fu8_t)((data) >> 24) & 0xff), \ |
---|
1460 | 4) |
---|
1461 | #define aimutil_getle32(buf) ( \ |
---|
1462 | (((*((buf)+0)) << 0) & 0x000000ff) + \ |
---|
1463 | (((*((buf)+1)) << 8) & 0x0000ff00) + \ |
---|
1464 | (((*((buf)+2)) << 16) & 0x00ff0000) + \ |
---|
1465 | (((*((buf)+3)) << 24) & 0xff000000)) |
---|
1466 | |
---|
1467 | |
---|
1468 | faim_export int aimutil_putstr(char *, const char *, int); |
---|
1469 | faim_export fu16_t aimutil_iconsum(const fu8_t *buf, int buflen); |
---|
1470 | faim_export int aim_util_getlocalip(fu8_t *ip); |
---|
1471 | faim_export int aimutil_tokslen(char *toSearch, int theindex, char dl); |
---|
1472 | faim_export int aimutil_itemcnt(char *toSearch, char dl); |
---|
1473 | faim_export char *aimutil_itemindex(char *toSearch, int theindex, char dl); |
---|
1474 | |
---|
1475 | faim_export int aim_snlen(const char *sn); |
---|
1476 | faim_export int aim_sncmp(const char *sn1, const char *sn2); |
---|
1477 | |
---|
1478 | #include <aim_internal.h> |
---|
1479 | |
---|
1480 | #ifdef __cplusplus |
---|
1481 | } |
---|
1482 | #endif |
---|
1483 | |
---|
1484 | #endif /* __AIM_H__ */ |
---|