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