]> andersk Git - libfaim.git/blob - faim/aim.h
close->closesocket for win32, and socket() stupidity in aim_ft.
[libfaim.git] / faim / aim.h
1 /* 
2  * Main libfaim header.  Must be included in client for prototypes/macros.
3  *
4  */
5
6 #ifndef __AIM_H__
7 #define __AIM_H__
8
9 #define FAIM_VERSION_MAJOR 0
10 #define FAIM_VERSION_MINOR 99
11 #define FAIM_VERSION_MINORMINOR 0
12
13 #include <faim/faimconfig.h>
14 #include <faim/aim_cbtypes.h>
15
16 #if !defined(FAIM_USEPTHREADS) && !defined(FAIM_USEFAKELOCKS)
17 #error pthreads or fakelocks are currently required.
18 #endif
19
20 #include <stdio.h>
21 #include <string.h>
22 #include <fcntl.h>
23 #include <sys/types.h>
24 #include <stdlib.h>
25 #include <stdarg.h>
26 #include <errno.h>
27
28 #ifdef _WIN32
29 #include <windows.h>
30 #include <time.h>
31 #include <io.h>
32 #else
33 #include <sys/time.h>
34 #include <unistd.h>
35 #endif
36
37 #ifdef FAIM_USEPTHREADS
38 #include <pthread.h>
39 #define faim_mutex_t pthread_mutex_t 
40 #define faim_mutex_init(x) pthread_mutex_init(x, NULL)
41 #define faim_mutex_lock(x) pthread_mutex_lock(x)
42 #define faim_mutex_unlock(x) pthread_mutex_unlock(x)
43 #define faim_mutex_destroy(x) pthread_mutex_destroy(x)
44 #elif defined(FAIM_USEFAKELOCKS)
45 /*
46  * For platforms without pthreads, we also assume
47  * we're not linking against a threaded app.  Which
48  * means we don't have to do real locking.  The 
49  * macros below do nothing really.  They're a joke.
50  * But they get it to compile.
51  */
52 #define faim_mutex_t char
53 #define faim_mutex_init(x) *x = 0
54 #define faim_mutex_lock(x) *x = 1;
55 #define faim_mutex_unlock(x) *x = 0;
56 #define faim_mutex_destroy(x) *x = 0;
57 #endif
58
59 /* Portability stuff (DMP) */
60
61 #ifdef _WIN32
62 #define sleep Sleep
63 #define socklen_t int /* this must be a POSIXy thing */
64 #define snprintf _snprintf /* I'm not sure whats wrong with Microsoft here */
65 #define close(x) closesocket(x) /* no comment */
66 #endif
67
68 #if defined(mach) && defined(__APPLE__)
69 #define gethostbyname(x) gethostbyname2(x, AF_INET) 
70 #endif
71
72 #if defined(_WIN32) || defined(STRICT_ANSI)
73 #define faim_shortfunc
74 #else
75 #define faim_shortfunc inline
76 #endif
77
78 #if defined(_WIN32) && !defined(WIN32_STATIC)
79 /*
80  * For a win32 DLL, we define WIN32_INDLL if this file
81  * is included while compiling the DLL. If its not 
82  * defined (its included in a client app), the symbols
83  * will be imported instead of exported.
84  */
85 #ifdef WIN32_INDLL
86 #define faim_export __declspec(dllexport)
87 #else 
88 #define faim_export __declspec(dllimport)
89 #endif /* WIN32_INDLL */
90 #define faim_internal
91 #else
92 /*
93  * Nothing normally needed for unix...
94  */
95 #define faim_export
96 #define faim_internal
97 #endif
98
99 /* 
100  * Current Maximum Length for Screen Names (not including NULL) 
101  *
102  * Currently only names up to 16 characters can be registered
103  * however it is aparently legal for them to be larger.
104  */
105 #define MAXSNLEN 32
106
107 /*
108  * Current Maximum Length for Instant Messages
109  *
110  * This was found basically by experiment, but not wholly
111  * accurate experiment.  It should not be regarded
112  * as completely correct.  But its a decent approximation.
113  *
114  * Note that although we can send this much, its impossible
115  * for WinAIM clients (up through the latest (4.0.1957)) to
116  * send any more than 1kb.  Amaze all your windows friends
117  * with utterly oversized instant messages!
118  *
119  * XXX: the real limit is the total SNAC size at 8192. Fix this.
120  * 
121  */
122 #define MAXMSGLEN 7987
123
124 /*
125  * Current Maximum Length for Chat Room Messages
126  *
127  * This is actually defined by the protocol to be
128  * dynamic, but I have yet to see due cause to 
129  * define it dynamically here.  Maybe later.
130  *
131  */
132 #define MAXCHATMSGLEN 512
133
134 /*
135  * Standard size of an AIM authorization cookie
136  */
137 #define AIM_COOKIELEN            0x100
138
139 #define AIM_MD5_STRING "AOL Instant Messenger (SM)"
140
141 /*
142  * Login info.  Passes information from the Authorization
143  * stage of login to the service (BOS, etc) connection
144  * phase.
145  *
146  */
147 struct aim_login_struct {
148   char screen_name[MAXSNLEN+1];
149   char *BOSIP;
150   unsigned char cookie[AIM_COOKIELEN];
151   char *email;
152   u_short regstatus;
153   char *errorurl;
154   u_short errorcode;
155 };
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
178 #ifndef TRUE
179 #define TRUE 1
180 #define FALSE 0
181 #endif
182
183 /* 
184  * These could be arbitrary, but its easier to use the actual AIM values 
185  */
186 #define AIM_CONN_TYPE_AUTH          0x0007
187 #define AIM_CONN_TYPE_ADS           0x0005
188 #define AIM_CONN_TYPE_BOS           0x0002
189 #define AIM_CONN_TYPE_CHAT          0x000e
190 #define AIM_CONN_TYPE_CHATNAV       0x000d
191
192 /* they start getting arbitrary in rendezvous stuff =) */
193 #define AIM_CONN_TYPE_RENDEZVOUS    0x0101 /* these do not speak OSCAR! */
194 #define AIM_CONN_TYPE_RENDEZVOUS_OUT 0x0102 /* socket waiting for accept() */
195
196 /*
197  * Subtypes, we need these for OFT stuff.
198  */
199 #define AIM_CONN_SUBTYPE_OFT_DIRECTIM  0x0001
200 #define AIM_CONN_SUBTYPE_OFT_GETFILE   0x0002
201 #define AIM_CONN_SUBTYPE_OFT_SENDFILE  0x0003
202 #define AIM_CONN_SUBTYPE_OFT_BUDDYICON 0x0004
203 #define AIM_CONN_SUBTYPE_OFT_VOICE     0x0005
204
205 /*
206  * Status values returned from aim_conn_new().  ORed together.
207  */
208 #define AIM_CONN_STATUS_READY       0x0001
209 #define AIM_CONN_STATUS_INTERNALERR 0x0002
210 #define AIM_CONN_STATUS_RESOLVERR   0x0080
211 #define AIM_CONN_STATUS_CONNERR     0x0040
212
213 #define AIM_FRAMETYPE_OSCAR 0x0000
214 #define AIM_FRAMETYPE_OFT 0x0001
215
216 struct aim_conn_t {
217   int fd;
218   unsigned short type;
219   unsigned short subtype;
220   int seqnum;
221   int status;
222   void *priv; /* misc data the client may want to store */
223   time_t lastactivity; /* time of last transmit */
224   int forcedlatency; 
225   struct aim_rxcblist_t *handlerlist;
226   faim_mutex_t active; /* lock around read/writes */
227   faim_mutex_t seqnum_lock; /* lock around ->seqnum changes */
228   struct aim_conn_t *next;
229 };
230
231 /* struct for incoming commands */
232 struct command_rx_struct {
233   unsigned char hdrtype; /* defines which piece of the union to use */
234   union {
235     struct { 
236       char type;
237       unsigned short seqnum;     
238     } oscar;
239     struct {
240       unsigned short type;
241       unsigned char magic[4]; /* ODC2 OFT2 */
242       unsigned short hdr2len;
243       unsigned char *hdr2; /* rest of bloated header */
244     } oft;
245   } hdr;
246   unsigned short commandlen;         /* total payload length */
247   unsigned char *data;             /* packet data (from 7 byte on) */
248   unsigned char lock;               /* 0 = open, !0 = locked */
249   unsigned char handled;            /* 0 = new, !0 = been handled */
250   unsigned char nofree;             /* 0 = free data on purge, 1 = only unlink */
251   struct aim_conn_t *conn;  /* the connection it came in on... */
252   struct command_rx_struct *next; /* ptr to next struct in list */
253 };
254
255 /* struct for outgoing commands */
256 struct command_tx_struct {
257   unsigned char hdrtype; /* defines which piece of the union to use */
258   union {
259     struct {
260       unsigned char type;
261       unsigned short seqnum;
262     } oscar;
263     struct {
264       unsigned short type;
265       unsigned char magic[4]; /* ODC2 OFT2 */
266       unsigned short hdr2len;
267       unsigned char *hdr2;
268     } oft;
269   } hdr;
270   u_int commandlen;         
271   u_char *data;      
272   u_int lock;               /* 0 = open, !0 = locked */
273   u_int sent;               /* 0 = pending, !0 = has been sent */
274   struct aim_conn_t *conn; 
275   struct command_tx_struct *next; /* ptr to next struct in list */
276 };
277
278
279 /*
280  * AIM Session: The main client-data interface.  
281  *
282  */
283 struct aim_session_t {
284
285   /* ---- Client Accessible ------------------------ */
286   /* 
287    * Login information.  See definition above.
288    *
289    */
290   struct aim_login_struct logininfo;
291   
292   /*
293    * Pointer to anything the client wants to 
294    * explicitly associate with this session.
295    */
296   void *aux_data;
297
298
299   /* ---- Internal Use Only ------------------------ */
300   /* 
301    * Connection information
302    */
303   struct aim_conn_t *connlist;
304   faim_mutex_t connlistlock;
305   
306   /* 
307    * TX/RX queues 
308    */
309   struct command_tx_struct *queue_outgoing;   
310   struct command_rx_struct *queue_incoming; 
311   
312   /*
313    * Tx Enqueuing function
314    */
315   int (*tx_enqueue)(struct aim_session_t *, struct command_tx_struct *);
316
317   /*
318    * This is a dreadful solution to the what-room-are-we-joining
319    * problem.  (There's no connection between the service
320    * request and the resulting redirect.)
321    */ 
322   char *pendingjoin;
323
324   /*
325    * Outstanding snac handling 
326    *
327    * XXX: Should these be per-connection? -mid
328    */
329   struct aim_snac_t *snac_hash[FAIM_SNAC_HASH_SIZE];
330   faim_mutex_t snac_hash_locks[FAIM_SNAC_HASH_SIZE];
331   u_long snac_nextid;
332
333   struct aim_msgcookie_t *msgcookies;
334 };
335
336
337 /*
338  * AIM User Info, Standard Form.
339  */
340 struct aim_userinfo_s {
341   char sn[MAXSNLEN+1];
342   u_short warnlevel;
343   u_short idletime;
344   u_short class;
345   u_long membersince;
346   u_long onlinesince;
347   u_long sessionlen;  
348   u_short capabilities;
349 };
350
351 #define AIM_CLASS_TRIAL         0x0001 /* "damned transients" */
352 #define AIM_CLASS_ADMINISTRATOR 0x0002
353 #define AIM_CLASS_AOL           0x0004
354 #define AIM_CLASS_OSCAR_PAY     0x0008
355 #define AIM_CLASS_FREE          0x0010
356 #define AIM_CLASS_AWAY          0x0020
357 #define AIM_CLASS_UNKNOWN40     0x0040
358 #define AIM_CLASS_UNKNOWN80     0x0080
359
360 #define AIM_CLASS_ALLUSERS      0x001f
361
362 /*
363  * TLV handling
364  */
365
366 /* Generic TLV structure. */
367 struct aim_tlv_t {
368   u_short type;
369   u_short length;
370   u_char *value;
371 };
372
373 /* List of above. */
374 struct aim_tlvlist_t {
375   struct aim_tlv_t *tlv;
376   struct aim_tlvlist_t *next;
377 };
378
379 /* TLV-handling functions */
380 faim_internal struct aim_tlvlist_t *aim_readtlvchain(u_char *buf, int maxlen);
381 faim_internal void aim_freetlvchain(struct aim_tlvlist_t **list);
382 faim_internal struct aim_tlv_t *aim_grabtlv(u_char *src);
383 faim_internal struct aim_tlv_t *aim_grabtlvstr(u_char *src);
384 faim_internal struct aim_tlv_t *aim_gettlv(struct aim_tlvlist_t *, u_short, int);
385 faim_internal char *aim_gettlv_str(struct aim_tlvlist_t *, u_short, int);
386 faim_internal int aim_puttlv (u_char *dest, struct aim_tlv_t *newtlv);
387 faim_internal struct aim_tlv_t *aim_createtlv(void);
388 faim_internal int aim_freetlv(struct aim_tlv_t **oldtlv);
389 faim_internal int aim_puttlv_16(u_char *, u_short, u_short);
390 faim_internal int aim_puttlv_32(u_char *, u_short, u_long);
391 faim_internal int aim_puttlv_str(u_char *buf, u_short t, int l, char *v);
392 faim_internal int aim_writetlvchain(u_char *buf, int buflen, struct aim_tlvlist_t **list);
393 faim_internal int aim_addtlvtochain16(struct aim_tlvlist_t **list, unsigned short type, unsigned short val);
394 faim_internal int aim_addtlvtochain32(struct aim_tlvlist_t **list, unsigned short type, unsigned long val);
395 faim_internal int aim_addtlvtochain_str(struct aim_tlvlist_t **list, unsigned short type, char *str, int len);
396 faim_internal int aim_counttlvchain(struct aim_tlvlist_t **list);
397
398 /*
399  * Get command from connections / Dispatch commands
400  * already in queue.
401  */
402 faim_export int aim_get_command(struct aim_session_t *, struct aim_conn_t *);
403 int aim_rxdispatch(struct aim_session_t *);
404
405 faim_export unsigned long aim_debugconn_sendconnect(struct aim_session_t *sess, struct aim_conn_t *conn);
406
407 int aim_logoff(struct aim_session_t *);
408
409 faim_export void aim_conn_kill(struct aim_session_t *sess, struct aim_conn_t **deadconn);
410
411 typedef int (*rxcallback_t)(struct aim_session_t *, struct command_rx_struct *, ...);
412 int aim_register_callbacks(rxcallback_t *);
413
414 faim_internal unsigned long aim_genericreq_n(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype);
415 faim_internal unsigned long aim_genericreq_l(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype, u_long *);
416 faim_internal unsigned long aim_genericreq_s(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype, u_short *);
417
418 faim_internal struct aim_fileheader_t *aim_oft_getfh(unsigned char *hdr);
419
420 /* aim_login.c */
421 faim_export int aim_sendconnack(struct aim_session_t *sess, struct aim_conn_t *conn);
422 faim_export int aim_request_login (struct aim_session_t *sess, struct aim_conn_t *conn, char *sn);
423 faim_export int aim_send_login (struct aim_session_t *, struct aim_conn_t *, char *, char *, struct client_info_s *, char *key);
424 faim_export unsigned long aim_sendauthresp(struct aim_session_t *sess, struct aim_conn_t *conn, char *sn, char *bosip, char *cookie, char *email, int regstatus);
425 faim_export int aim_gencookie(unsigned char *buf);
426 faim_export int aim_sendserverready(struct aim_session_t *sess, struct aim_conn_t *conn);
427 faim_internal int aim_authkeyparse(struct aim_session_t *sess, struct command_rx_struct *command);
428 faim_export unsigned long aim_sendredirect(struct aim_session_t *sess, struct aim_conn_t *conn, unsigned short servid, char *ip, char *cookie);
429 faim_export void aim_purge_rxqueue(struct aim_session_t *);
430 faim_internal void aim_rxqueue_cleanbyconn(struct aim_session_t *sess, struct aim_conn_t *conn);
431 faim_internal int aim_recv(int fd, void *buf, size_t count);
432
433 int aim_parse_unknown(struct aim_session_t *, struct command_rx_struct *command, ...);
434 int aim_parse_missed_im(struct aim_session_t *, struct command_rx_struct *, ...);
435 int aim_parse_last_bad(struct aim_session_t *, struct command_rx_struct *, ...);
436 faim_internal int aim_get_command_rendezvous(struct aim_session_t *sess, struct aim_conn_t *conn);
437
438 faim_internal struct command_tx_struct *aim_tx_new(unsigned char framing, int chan, struct aim_conn_t *conn, int datalen);
439 faim_internal int aim_tx_enqueue__queuebased(struct aim_session_t *, struct command_tx_struct *);
440 faim_internal int aim_tx_enqueue__immediate(struct aim_session_t *, struct command_tx_struct *);
441 #define aim_tx_enqueue(x, y) ((*(x->tx_enqueue))(x, y))
442 faim_internal int aim_tx_sendframe(struct aim_session_t *sess, struct command_tx_struct *cur);
443 faim_internal unsigned int aim_get_next_txseqnum(struct aim_conn_t *);
444 faim_export int aim_tx_flushqueue(struct aim_session_t *);
445 faim_internal int aim_tx_printqueue(struct aim_session_t *);
446 faim_export void aim_tx_purgequeue(struct aim_session_t *);
447
448 struct aim_rxcblist_t {
449   u_short family;
450   u_short type;
451   rxcallback_t handler;
452   u_short flags;
453   struct aim_rxcblist_t *next;
454 };
455
456 faim_export int aim_conn_setlatency(struct aim_conn_t *conn, int newval);
457
458 faim_export int aim_conn_addhandler(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short type, rxcallback_t newhandler, u_short flags);
459 faim_internal rxcallback_t aim_callhandler(struct aim_conn_t *conn, u_short family, u_short type);
460 faim_export int aim_clearhandlers(struct aim_conn_t *conn);
461
462 /*
463  * Generic SNAC structure.  Rarely if ever used.
464  */
465 struct aim_snac_t {
466   u_long id;
467   u_short family;
468   u_short type;
469   u_short flags;
470   void *data;
471   time_t issuetime;
472   struct aim_snac_t *next;
473 };
474 faim_internal void aim_initsnachash(struct aim_session_t *sess);
475 faim_internal unsigned long aim_newsnac(struct aim_session_t *, struct aim_snac_t *newsnac);
476 faim_internal struct aim_snac_t *aim_remsnac(struct aim_session_t *, u_long id);
477 faim_internal int aim_cleansnacs(struct aim_session_t *, int maxage);
478 faim_internal int aim_putsnac(u_char *, int, int, int, u_long);
479
480
481 faim_internal void aim_connrst(struct aim_session_t *);
482 faim_internal struct aim_conn_t *aim_conn_getnext(struct aim_session_t *);
483 faim_export void aim_conn_close(struct aim_conn_t *deadconn);
484 faim_internal struct aim_conn_t *aim_getconn_type(struct aim_session_t *, int type);
485 faim_export struct aim_conn_t *aim_newconn(struct aim_session_t *, int type, char *dest);
486 faim_export int aim_conngetmaxfd(struct aim_session_t *);
487 faim_export struct aim_conn_t *aim_select(struct aim_session_t *, struct timeval *, int *);
488 faim_export int aim_conn_isready(struct aim_conn_t *);
489 faim_export int aim_conn_setstatus(struct aim_conn_t *, int);
490 faim_export void aim_session_init(struct aim_session_t *);
491
492 /* aim_misc.c */
493
494 #define AIM_VISIBILITYCHANGE_PERMITADD    0x05
495 #define AIM_VISIBILITYCHANGE_PERMITREMOVE 0x06
496 #define AIM_VISIBILITYCHANGE_DENYADD      0x07
497 #define AIM_VISIBILITYCHANGE_DENYREMOVE   0x08
498
499 #define AIM_PRIVFLAGS_ALLOWIDLE           0x01
500 #define AIM_PRIVFLAGS_ALLOWMEMBERSINCE    0x02
501
502 #define AIM_WARN_ANON                     0x01
503
504 faim_export int aim_send_warning(struct aim_session_t *sess, struct aim_conn_t *conn, char *destsn, int anon);
505 faim_export unsigned long aim_bos_nop(struct aim_session_t *, struct aim_conn_t *);
506 faim_export unsigned long aim_bos_setidle(struct aim_session_t *, struct aim_conn_t *, u_long);
507 faim_export unsigned long aim_bos_changevisibility(struct aim_session_t *, struct aim_conn_t *, int, char *);
508 faim_export unsigned long aim_bos_setbuddylist(struct aim_session_t *, struct aim_conn_t *, char *);
509 faim_export unsigned long aim_bos_setprofile(struct aim_session_t *, struct aim_conn_t *, char *, char *, unsigned short);
510 faim_export unsigned long aim_bos_setgroupperm(struct aim_session_t *, struct aim_conn_t *, u_long);
511 faim_export unsigned long aim_bos_clientready(struct aim_session_t *, struct aim_conn_t *);
512 faim_export unsigned long aim_bos_reqrate(struct aim_session_t *, struct aim_conn_t *);
513 faim_export unsigned long aim_bos_ackrateresp(struct aim_session_t *, struct aim_conn_t *);
514 faim_export unsigned long aim_bos_setprivacyflags(struct aim_session_t *, struct aim_conn_t *, u_long);
515 faim_export unsigned long aim_bos_reqpersonalinfo(struct aim_session_t *, struct aim_conn_t *);
516 faim_export unsigned long aim_bos_reqservice(struct aim_session_t *, struct aim_conn_t *, u_short);
517 faim_export unsigned long aim_bos_reqrights(struct aim_session_t *, struct aim_conn_t *);
518 faim_export unsigned long aim_bos_reqbuddyrights(struct aim_session_t *, struct aim_conn_t *);
519 faim_export unsigned long aim_bos_reqlocaterights(struct aim_session_t *, struct aim_conn_t *);
520 faim_export unsigned long aim_bos_reqicbmparaminfo(struct aim_session_t *, struct aim_conn_t *);
521 faim_export unsigned long aim_addicbmparam(struct aim_session_t *sess,struct aim_conn_t *conn);
522 faim_export unsigned long aim_setversions(struct aim_session_t *sess, struct aim_conn_t *conn);
523
524 faim_internal struct aim_fileheader_t *aim_getlisting(struct aim_session_t*);
525 faim_internal int aim_listenestablish(u_short);
526
527 /* aim_rxhandlers.c */
528 faim_export int aim_rxdispatch(struct aim_session_t *);
529 faim_internal int aim_authparse(struct aim_session_t *, struct command_rx_struct *);
530 faim_internal int aim_handleredirect_middle(struct aim_session_t *, struct command_rx_struct *, ...);
531 faim_internal int aim_parse_unknown(struct aim_session_t *, struct command_rx_struct *, ...);
532 int aim_parse_last_bad(struct aim_session_t *, struct command_rx_struct *, ...);
533 faim_internal int aim_parse_generalerrs(struct aim_session_t *, struct command_rx_struct *command, ...);
534 faim_internal int aim_parsemotd_middle(struct aim_session_t *sess, struct command_rx_struct *command, ...);
535 faim_internal int aim_parse_ratechange_middle(struct aim_session_t *sess, struct command_rx_struct *command);
536 faim_internal int aim_parse_evilnotify_middle(struct aim_session_t *sess, struct command_rx_struct *command);
537 faim_internal int aim_parse_msgack_middle(struct aim_session_t *sess, struct command_rx_struct *command);
538
539 faim_export unsigned long aim_ads_clientready(struct aim_session_t *sess, struct aim_conn_t *conn);
540 faim_export unsigned long aim_ads_requestads(struct aim_session_t *sess, struct aim_conn_t *conn);
541
542 /* aim_im.c */
543 struct aim_directim_priv {
544   unsigned char cookie[8];
545   char sn[MAXSNLEN+1];
546   char ip[30];
547 };
548
549 #define AIM_IMFLAGS_AWAY 0x01 /* mark as an autoreply */
550 #define AIM_IMFLAGS_ACK  0x02 /* request a receipt notice */
551
552 faim_export unsigned long aim_send_im(struct aim_session_t *, struct aim_conn_t *, char *, u_int, char *);
553 faim_internal int aim_parse_incoming_im_middle(struct aim_session_t *, struct command_rx_struct *);
554 faim_internal int aim_parse_outgoing_im_middle(struct aim_session_t *, struct command_rx_struct *);
555 faim_export unsigned long aim_seticbmparam(struct aim_session_t *, struct aim_conn_t *conn);
556 faim_internal int aim_parse_msgerror_middle(struct aim_session_t *, struct command_rx_struct *);
557 faim_internal int aim_negchan_middle(struct aim_session_t *sess, struct command_rx_struct *command);
558 faim_internal int aim_parse_bosrights(struct aim_session_t *sess, struct command_rx_struct *command, ...);
559 faim_internal int aim_parse_missedcall(struct aim_session_t *sess, struct command_rx_struct *command);
560
561 faim_export struct aim_conn_t * aim_directim_initiate(struct aim_session_t *, struct aim_conn_t *, struct aim_directim_priv *, char *);
562 faim_export int aim_send_im_direct(struct aim_session_t *, struct aim_conn_t *, char *);
563 faim_export struct aim_conn_t *aim_directim_connect(struct aim_session_t *, struct aim_conn_t *, struct aim_directim_priv *);
564
565 /* aim_info.c */
566 #define AIM_CAPS_BUDDYICON 0x01
567 #define AIM_CAPS_VOICE 0x02
568 #define AIM_CAPS_IMIMAGE 0x04
569 #define AIM_CAPS_CHAT 0x08
570 #define AIM_CAPS_GETFILE 0x10
571 #define AIM_CAPS_SENDFILE 0x20
572
573 extern u_char aim_caps[6][16];
574 faim_internal unsigned short aim_getcap(unsigned char *capblock, int buflen);
575 faim_internal int aim_putcap(unsigned char *capblock, int buflen, u_short caps);
576
577 #define AIM_GETINFO_GENERALINFO 0x00001
578 #define AIM_GETINFO_AWAYMESSAGE 0x00003
579
580 struct aim_msgcookie_t {
581   unsigned char cookie[8];
582   int type;
583   void *data;
584   time_t addtime;
585   struct aim_msgcookie_t *next;
586 };
587
588 struct aim_fileheader_t {
589 #if 0
590   char  magic[4];            /* 0 */
591   short hdrlen;           /* 4 */
592   short hdrtype;             /* 6 */
593 #endif
594   char  bcookie[8];       /* 8 */
595   short encrypt;          /* 16 */
596   short compress;         /* 18 */
597   short totfiles;         /* 20 */
598   short filesleft;        /* 22 */
599   short totparts;         /* 24 */
600   short partsleft;        /* 26 */
601   long  totsize;          /* 28 */
602   long  size;             /* 32 */
603   long  modtime;          /* 36 */
604   long  checksum;         /* 40 */
605   long  rfrcsum;          /* 44 */
606   long  rfsize;           /* 48 */
607   long  cretime;          /* 52 */
608   long  rfcsum;           /* 56 */
609   long  nrecvd;           /* 60 */
610   long  recvcsum;         /* 64 */
611   char  idstring[32];     /* 68 */
612   char  flags;            /* 100 */
613   char  lnameoffset;      /* 101 */
614   char  lsizeoffset;      /* 102 */
615   char  dummy[69];        /* 103 */
616   char  macfileinfo[16];  /* 172 */
617   short nencode;          /* 188 */
618   short nlanguage;        /* 190 */
619   char  name[64];         /* 192 */
620                           /* 256 */
621 };
622
623 struct aim_filetransfer_priv {
624   char sn[MAXSNLEN];
625   char cookie[8];
626   char ip[30];
627   int state;
628   struct aim_fileheader_t fh;
629 };
630
631 #define AIM_COOKIETYPE_UNKNOWN  0x00
632 #define AIM_COOKIETYPE_ICBM     0x01
633 #define AIM_COOKIETYPE_ADS      0x02
634 #define AIM_COOKIETYPE_BOS      0x03
635 #define AIM_COOKIETYPE_IM       0x04
636 #define AIM_COOKIETYPE_CHAT     0x05
637 #define AIM_COOKIETYPE_CHATNAV  0x06
638 /* we'll move OFT up a bit to give breathing room.  not like it really
639  * matters. */
640 #define AIM_COOKIETYPE_OFTIM    0x10
641 #define AIM_COOKIETYPE_OFTGET   0x11
642 #define AIM_COOKIETYPE_OFTSEND  0x12
643 #define AIM_COOKIETYPE_OFTVOICE 0x13
644 #define AIM_COOKIETYPE_OFTIMAGE 0x14
645 #define AIM_COOKIETYPE_OFTICON  0x15
646
647 faim_internal int aim_cachecookie(struct aim_session_t *sess, struct aim_msgcookie_t *cookie);
648 faim_export int aim_purgecookies(struct aim_session_t *sess, int maxage);
649 faim_internal struct aim_msgcookie_t *aim_uncachecookie(struct aim_session_t *sess, unsigned char *cookie, int type);
650 faim_internal struct aim_msgcookie_t *aim_mkcookie(unsigned char *, int, void *);
651 faim_internal struct aim_msgcookie_t *aim_checkcookie(struct aim_session_t *, unsigned char *, int);
652 faim_internal int aim_msgcookie_gettype(int reqclass);
653
654 faim_export int aim_handlerendconnect(struct aim_session_t *sess, struct aim_conn_t *cur);
655
656 #define AIM_TRANSFER_DENY_NOTSUPPORTED 0x0000
657 #define AIM_TRANSFER_DENY_DECLINE 0x0001
658 #define AIM_TRANSFER_DENY_NOTACCEPTING 0x0002
659 faim_export unsigned long aim_denytransfer(struct aim_session_t *sess, struct aim_conn_t *conn, char *sender, char *cookie, unsigned short code);
660 faim_export unsigned long aim_accepttransfer(struct aim_session_t *sess, struct aim_conn_t *conn,struct aim_conn_t *oftconn, char *sender, char *cookie, unsigned short rendid);
661
662 faim_export unsigned long aim_getinfo(struct aim_session_t *, struct aim_conn_t *, const char *, unsigned short);
663 faim_internal int aim_extractuserinfo(u_char *, struct aim_userinfo_s *);
664 faim_internal int aim_parse_userinfo_middle(struct aim_session_t *, struct command_rx_struct *);
665 faim_internal int aim_parse_oncoming_middle(struct aim_session_t *, struct command_rx_struct *);
666 faim_internal int aim_parse_offgoing_middle(struct aim_session_t *, struct command_rx_struct *);
667 faim_internal int aim_putuserinfo(u_char *buf, int buflen, struct aim_userinfo_s *info);
668 faim_export int aim_sendbuddyoncoming(struct aim_session_t *sess, struct aim_conn_t *conn, struct aim_userinfo_s *info);
669 faim_export int aim_sendbuddyoffgoing(struct aim_session_t *sess, struct aim_conn_t *conn, char *sn);
670 faim_internal int aim_parse_locateerr(struct aim_session_t *sess, struct command_rx_struct *command);
671
672 /* aim_auth.c */
673 faim_export int aim_auth_sendcookie(struct aim_session_t *, struct aim_conn_t *, u_char *);
674 faim_export u_long aim_auth_clientready(struct aim_session_t *, struct aim_conn_t *);
675 faim_export unsigned long aim_auth_changepasswd(struct aim_session_t *, struct aim_conn_t *, char *, char *);
676
677 /* aim_buddylist.c */
678 faim_export unsigned long aim_add_buddy(struct aim_session_t *, struct aim_conn_t *, char *);
679 faim_export unsigned long aim_remove_buddy(struct aim_session_t *, struct aim_conn_t *, char *);
680 faim_internal int aim_parse_buddyrights(struct aim_session_t *sess, struct command_rx_struct *command, ...);
681
682 /* aim_search.c */
683 faim_export u_long aim_usersearch_address(struct aim_session_t *, struct aim_conn_t *, char *);
684
685
686 struct aim_chat_roominfo {
687   u_short exchange;
688   char *name;
689   u_short instance;
690 };
691 faim_internal int aim_chat_readroominfo(u_char *buf, struct aim_chat_roominfo *outinfo);
692 faim_internal int aim_chat_parse_infoupdate(struct aim_session_t *sess, struct command_rx_struct *command);
693 faim_internal int aim_chat_parse_joined(struct aim_session_t *sess, struct command_rx_struct *command);
694 faim_internal int aim_chat_parse_leave(struct aim_session_t *sess, struct command_rx_struct *command);
695 faim_internal int aim_chat_parse_incoming(struct aim_session_t *sess, struct command_rx_struct *command);
696 faim_export unsigned long aim_chat_send_im(struct aim_session_t *sess, struct aim_conn_t *conn, char *msg);
697 faim_export unsigned long aim_chat_join(struct aim_session_t *sess, struct aim_conn_t *conn, u_short exchange, const char *roomname);
698 faim_export unsigned long aim_chat_clientready(struct aim_session_t *sess, struct aim_conn_t *conn);
699 faim_export int aim_chat_attachname(struct aim_conn_t *conn, char *roomname);
700 faim_export char *aim_chat_getname(struct aim_conn_t *conn);
701 faim_export struct aim_conn_t *aim_chat_getconn(struct aim_session_t *, char *name);
702
703 faim_export unsigned long aim_chatnav_reqrights(struct aim_session_t *sess, struct aim_conn_t *conn);
704 faim_export unsigned long aim_chatnav_clientready(struct aim_session_t *sess, struct aim_conn_t *conn);
705
706 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);
707
708 struct aim_chat_exchangeinfo {
709   u_short number;
710   char *name;
711   char *charset1;
712   char *lang1;
713   char *charset2;
714   char *lang2;
715 };
716 faim_internal int aim_chatnav_parse_info(struct aim_session_t *sess, struct command_rx_struct *command);
717 faim_export u_long aim_chatnav_createroom(struct aim_session_t *sess, struct aim_conn_t *conn, char *name, u_short exchange);
718 faim_export int aim_chat_leaveroom(struct aim_session_t *sess, char *name);
719
720 /* aim_util.c */
721 #ifdef AIMUTIL_USEMACROS
722 /*
723  * These are really ugly.  You'd think this was LISP.  I wish it was.
724  */
725 #define aimutil_put8(buf, data) ((*(buf) = (u_char)(data)&0xff),1)
726 #define aimutil_get8(buf) ((*(buf))&0xff)
727 #define aimutil_put16(buf, data) ( \
728                                   (*(buf) = (u_char)((data)>>8)&0xff), \
729                                   (*((buf)+1) = (u_char)(data)&0xff),  \
730                                   2)
731 #define aimutil_get16(buf) ((((*(buf))<<8)&0xff00) + ((*((buf)+1)) & 0xff))
732 #define aimutil_put32(buf, data) ( \
733                                   (*((buf)) = (u_char)((data)>>24)&0xff), \
734                                   (*((buf)+1) = (u_char)((data)>>16)&0xff), \
735                                   (*((buf)+2) = (u_char)((data)>>8)&0xff), \
736                                   (*((buf)+3) = (u_char)(data)&0xff), \
737                                   4)
738 #define aimutil_get32(buf) ((((*(buf))<<24)&0xff000000) + \
739                             (((*((buf)+1))<<16)&0x00ff0000) + \
740                             (((*((buf)+2))<< 8)&0x0000ff00) + \
741                             (((*((buf)+3)    )&0x000000ff)))
742 #else
743 #warning Not using aimutil macros.  May have performance problems.
744 int aimutil_put8(u_char *, u_char);
745 u_char aimutil_get8(u_char *buf);
746 int aimutil_put16(u_char *, u_short);
747 u_short aimutil_get16(u_char *);
748 int aimutil_put32(u_char *, u_long);
749 u_long aimutil_get32(u_char *);
750 #endif
751
752 faim_export int aimutil_putstr(u_char *, const char *, int);
753 faim_export int aimutil_tokslen(char *toSearch, int index, char dl);
754 faim_export int aimutil_itemcnt(char *toSearch, char dl);
755 faim_export char *aimutil_itemidx(char *toSearch, int index, char dl);
756
757 faim_export int aim_snlen(const char *sn);
758 faim_export int aim_sncmp(const char *sn1, const char *sn2);
759
760 /* for libc's that dont have it */
761 faim_export char *aim_strsep(char **pp, const char *delim);
762
763 /* aim_meta.c */
764 faim_export char *aim_getbuilddate(void);
765 faim_export char *aim_getbuildtime(void);
766 faim_export char *aim_getbuildstring(void);
767 faim_internal void faimdprintf(int dlevel, const char *format, ...);
768
769 #endif /* __AIM_H__ */
770
This page took 0.130406 seconds and 5 git commands to generate.