]> andersk Git - libfaim.git/blob - faim/aim.h
331f9f18000f2e4b8f970b0e5bec0e3fe5165b74
[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 #ifndef FAIM_USEPTHREADS
17 #error pthreads 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 FAIM_USEPTHREADS
29 #include <pthread.h>
30 #define faim_mutex_t pthread_mutex_t 
31 #define faim_mutex_init pthread_mutex_init
32 #define faim_mutex_lock pthread_mutex_lock
33 #define faim_mutex_unlock pthread_mutex_unlock
34 #endif
35
36 #ifdef _WIN32
37 #include <windows.h>
38 #include <time.h>
39 #include <io.h>
40 #else
41 #include <netdb.h>
42 #include <sys/socket.h>
43 #include <netinet/in.h>
44 #include <sys/time.h>
45 #include <unistd.h>
46 #endif
47
48 /* Portability stuff (DMP) */
49
50 #ifdef _WIN32
51 #define sleep Sleep
52 #define strlen(x) (int)strlen(x)  /* win32 has a unsigned size_t */
53 #endif
54
55 #if defined(mach) && defined(__APPLE__)
56 #define gethostbyname(x) gethostbyname2(x, AF_INET) 
57 #endif
58
59 /* 
60  * Current Maximum Length for Screen Names (not including NULL) 
61  */
62 #define MAXSNLEN 16
63
64 /*
65  * Current Maximum Length for Instant Messages
66  *
67  * This was found basically by experiment, but not wholly
68  * accurate experiment.  It should not be regarded
69  * as completely correct.  But its a decent approximation.
70  *
71  * Note that although we can send this much, its impossible
72  * for WinAIM clients (up through the latest (4.0.1957)) to
73  * send any more than 1kb.  Amaze all your windows friends
74  * with utterly oversized instant messages!
75  * 
76  */
77 #define MAXMSGLEN 7987
78
79 /*
80  * Current Maximum Length for Chat Room Messages
81  *
82  * This is actually defined by the protocol to be
83  * dynamic, but I have yet to see due cause to 
84  * define it dynamically here.  Maybe later.
85  *
86  */
87 #define MAXCHATMSGLEN 512
88
89 /*
90  * Standard size of an AIM authorization cookie
91  */
92 #define AIM_COOKIELEN            0x100
93
94 #if debug > 0
95 #define faimdprintf(l, x...) {if (l >= debug) printf(x); }
96 #else
97 #define faimdprintf(l, x...)
98 #endif
99
100 /*
101  * Login info.  Passes information from the Authorization
102  * stage of login to the service (BOS, etc) connection
103  * phase.
104  *
105  */
106 struct aim_login_struct {
107   char screen_name[MAXSNLEN+1];
108   char *BOSIP;
109   char cookie[AIM_COOKIELEN];
110   char *email;
111   u_short regstatus;
112   char *errorurl;
113   u_short errorcode;
114 };
115
116 /*
117  * Client info.  Filled in by the client and passed
118  * in to aim_login().  The information ends up
119  * getting passed to OSCAR through the initial
120  * login command.
121  *
122  * XXX: Should this be per-session? -mid
123  *
124  */
125 struct client_info_s {
126   char clientstring[100]; /* arbitrary size */
127   int major;
128   int minor;
129   int build;
130   char country[3];
131   char lang[3];
132 };
133
134 #ifndef TRUE
135 #define TRUE 1
136 #define FALSE 0
137 #endif
138
139 /* 
140  * These could be arbitrary, but its easier to use the actual AIM values 
141  */
142 #define AIM_CONN_TYPE_AUTH          0x0007
143 #define AIM_CONN_TYPE_ADS           0x0005
144 #define AIM_CONN_TYPE_BOS           0x0002
145 #define AIM_CONN_TYPE_CHAT          0x000e
146 #define AIM_CONN_TYPE_CHATNAV       0x000d
147 #define AIM_CONN_TYPE_RENDEZVOUS    0x0101 /* these do not speak OSCAR! */
148
149 /*
150  * Status values returned from aim_conn_new().  ORed together.
151  */
152 #define AIM_CONN_STATUS_READY       0x0001
153 #define AIM_CONN_STATUS_INTERNALERR 0x0002
154 #define AIM_CONN_STATUS_RESOLVERR   0x0080
155 #define AIM_CONN_STATUS_CONNERR     0x0040
156
157 #define AIM_FRAMETYPE_OSCAR 0x0000
158 #define AIM_FRAMETYPE_OFT 0x0001
159
160 struct aim_conn_t {
161   int fd;
162   int type;
163   int seqnum;
164   int status;
165   void *priv; /* misc data the client may want to store */
166   time_t lastactivity; /* time of last transmit */
167   int forcedlatency; 
168   struct aim_rxcblist_t *handlerlist;
169   faim_mutex_t active; /* lock around read/writes */
170   faim_mutex_t seqnum_lock; /* lock around ->seqnum changes */
171   struct aim_conn_t *next;
172 };
173
174 /* struct for incoming commands */
175 struct command_rx_struct {
176   unsigned char hdrtype; /* defines which piece of the union to use */
177   union {
178     struct { 
179       char type;        
180       unsigned short seqnum;     
181     } oscar;
182     struct {
183       unsigned short type;
184       unsigned short hdr2len;
185       unsigned char *hdr2; /* rest of bloated header */
186     } oft;
187   } hdr;
188   unsigned short commandlen;         /* total payload length */
189   unsigned char *data;             /* packet data (from 7 byte on) */
190   unsigned char lock;               /* 0 = open, !0 = locked */
191   unsigned char handled;            /* 0 = new, !0 = been handled */
192   unsigned char nofree;             /* 0 = free data on purge, 1 = only unlink */
193   struct aim_conn_t *conn;  /* the connection it came in on... */
194   struct command_rx_struct *next; /* ptr to next struct in list */
195 };
196
197 /* struct for outgoing commands */
198 struct command_tx_struct {
199   unsigned char hdrtype; /* defines which piece of the union to use */
200   union {
201     struct {
202       unsigned char type;
203       unsigned short seqnum;
204     } oscar;
205     struct {
206       unsigned short type;
207       unsigned short hdr2len;
208       unsigned char *hdr2;
209     } oft;
210   } hdr;
211   u_int commandlen;         
212   u_char *data;      
213   u_int lock;               /* 0 = open, !0 = locked */
214   u_int sent;               /* 0 = pending, !0 = has been sent */
215   struct aim_conn_t *conn; 
216   struct command_tx_struct *next; /* ptr to next struct in list */
217 };
218
219
220 /*
221  * AIM Session: The main client-data interface.  
222  *
223  */
224 struct aim_session_t {
225
226   /* ---- Client Accessible ------------------------ */
227   /* 
228    * Login information.  See definition above.
229    *
230    */
231   struct aim_login_struct logininfo;
232   
233   /*
234    * Pointer to anything the client wants to 
235    * explicitly associate with this session.
236    */
237   void *aux_data;
238
239
240   /* ---- Internal Use Only ------------------------ */
241   /* 
242    * Connection information
243    */
244   struct aim_conn_t *connlist;
245   faim_mutex_t connlistlock;
246   
247   /* 
248    * TX/RX queues 
249    */
250   struct command_tx_struct *queue_outgoing;   
251   struct command_rx_struct *queue_incoming; 
252   
253   /*
254    * Tx Enqueuing function
255    */
256   int (*tx_enqueue)(struct aim_session_t *, struct command_tx_struct *);
257
258   /*
259    * This is a dreadful solution to the what-room-are-we-joining
260    * problem.  (There's no connection between the service
261    * request and the resulting redirect.)
262    */ 
263   char *pendingjoin;
264
265   /*
266    * Outstanding snac handling 
267    *
268    * XXX: Should these be per-connection? -mid
269    **/
270   struct aim_snac_t *outstanding_snacs;
271   u_long snac_nextid;
272
273   struct aim_msgcookie_t *msgcookies;
274 };
275
276
277 /*
278  * AIM User Info, Standard Form.
279  */
280 struct aim_userinfo_s {
281   char sn[MAXSNLEN+1];
282   u_short warnlevel;
283   u_short idletime;
284   u_short class;
285   u_long membersince;
286   u_long onlinesince;
287   u_long sessionlen;  
288   u_short capabilities;
289 };
290
291 #define AIM_CLASS_TRIAL         0x0001
292 #define AIM_CLASS_UNKNOWN2      0x0002
293 #define AIM_CLASS_AOL           0x0004
294 #define AIM_CLASS_UNKNOWN4      0x0008
295 #define AIM_CLASS_FREE          0x0010
296 #define AIM_CLASS_AWAY          0x0020
297 #define AIM_CLASS_UNKNOWN40     0x0040
298 #define AIM_CLASS_UNKNOWN80     0x0080
299
300 /*
301  * TLV handling
302  */
303
304 /* Generic TLV structure. */
305 struct aim_tlv_t {
306   u_short type;
307   u_short length;
308   u_char *value;
309 };
310
311 /* List of above. */
312 struct aim_tlvlist_t {
313   struct aim_tlv_t *tlv;
314   struct aim_tlvlist_t *next;
315 };
316
317 /* TLV-handling functions */
318 struct aim_tlvlist_t *aim_readtlvchain(u_char *buf, int maxlen);
319 void aim_freetlvchain(struct aim_tlvlist_t **list);
320 struct aim_tlv_t *aim_grabtlv(u_char *src);
321 struct aim_tlv_t *aim_grabtlvstr(u_char *src);
322 struct aim_tlv_t *aim_gettlv(struct aim_tlvlist_t *, u_short, int);
323 char *aim_gettlv_str(struct aim_tlvlist_t *, u_short, int);
324 int aim_puttlv (u_char *dest, struct aim_tlv_t *newtlv);
325 struct aim_tlv_t *aim_createtlv(void);
326 int aim_freetlv(struct aim_tlv_t **oldtlv);
327 int aim_puttlv_16(u_char *, u_short, u_short);
328 int aim_puttlv_32(u_char *, u_short, u_long);
329 int aim_puttlv_str(u_char *buf, u_short t, u_short l, u_char *v);
330 int aim_writetlvchain(u_char *buf, int buflen, struct aim_tlvlist_t **list);
331 int aim_addtlvtochain16(struct aim_tlvlist_t **list, unsigned short type, unsigned short val);
332 int aim_addtlvtochain32(struct aim_tlvlist_t **list, unsigned short type, unsigned long val);
333 int aim_addtlvtochain_str(struct aim_tlvlist_t **list, unsigned short type, char *str, int len);
334 int aim_counttlvchain(struct aim_tlvlist_t **list);
335
336 /*
337  * Get command from connections / Dispatch commands
338  * already in queue.
339  */
340 int aim_get_command(struct aim_session_t *, struct aim_conn_t *);
341 int aim_rxdispatch(struct aim_session_t *);
342
343 int aim_logoff(struct aim_session_t *);
344
345 void aim_conn_kill(struct aim_session_t *sess, struct aim_conn_t **deadconn);
346
347 typedef int (*rxcallback_t)(struct aim_session_t *, struct command_rx_struct *, ...);
348 int aim_register_callbacks(rxcallback_t *);
349
350 u_long aim_genericreq_n(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype);
351 u_long aim_genericreq_l(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype, u_long *);
352 u_long aim_genericreq_s(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype, u_short *);
353
354 /* aim_login.c */
355 int aim_sendconnack(struct aim_session_t *sess, struct aim_conn_t *conn);
356 int aim_request_login (struct aim_session_t *sess, struct aim_conn_t *conn, char *sn);
357 int aim_send_login (struct aim_session_t *, struct aim_conn_t *, char *, char *, struct client_info_s *);
358 int aim_encode_password(const char *, u_char *);
359 int aimicq_encode_password(const char *password, u_char *encoded);
360 unsigned long aim_sendauthresp(struct aim_session_t *sess, 
361                                struct aim_conn_t *conn, 
362                                char *sn, char *bosip, 
363                                char *cookie, char *email, 
364                                int regstatus);
365 int aim_gencookie(unsigned char *buf);
366 int aim_sendserverready(struct aim_session_t *sess, struct aim_conn_t *conn);
367 unsigned long aim_sendredirect(struct aim_session_t *sess, 
368                                struct aim_conn_t *conn, 
369                                unsigned short servid, 
370                                char *ip,
371                                char *cookie);
372 void aim_purge_rxqueue(struct aim_session_t *);
373
374
375 int aim_parse_unknown(struct aim_session_t *, struct command_rx_struct *command, ...);
376 int aim_parse_missed_im(struct aim_session_t *, struct command_rx_struct *, ...);
377 int aim_parse_last_bad(struct aim_session_t *, struct command_rx_struct *, ...);
378
379
380 struct command_tx_struct *aim_tx_new(unsigned short framing, int chan, struct aim_conn_t *conn, int datalen);
381 int aim_tx_enqueue__queuebased(struct aim_session_t *, struct command_tx_struct *);
382 int aim_tx_enqueue__immediate(struct aim_session_t *, struct command_tx_struct *);
383 #define aim_tx_enqueue(x, y) ((*(x->tx_enqueue))(x, y))
384 int aim_tx_sendframe(struct command_tx_struct *cur);
385 u_int aim_get_next_txseqnum(struct aim_conn_t *);
386 int aim_tx_flushqueue(struct aim_session_t *);
387 int aim_tx_printqueue(struct aim_session_t *);
388 void aim_tx_purgequeue(struct aim_session_t *);
389
390 struct aim_rxcblist_t {
391   u_short family;
392   u_short type;
393   rxcallback_t handler;
394   u_short flags;
395   struct aim_rxcblist_t *next;
396 };
397
398 int aim_conn_setlatency(struct aim_conn_t *conn, int newval);
399
400 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);
401 rxcallback_t aim_callhandler(struct aim_conn_t *conn, u_short family, u_short type);
402 int aim_clearhandlers(struct aim_conn_t *conn);
403
404 /*
405  * Generic SNAC structure.  Rarely if ever used.
406  */
407 struct aim_snac_t {
408   u_long id;
409   u_short family;
410   u_short type;
411   u_short flags;
412   void *data;
413   time_t issuetime;
414   struct aim_snac_t *next;
415 };
416 u_long aim_newsnac(struct aim_session_t *, struct aim_snac_t *newsnac);
417 struct aim_snac_t *aim_remsnac(struct aim_session_t *, u_long id);
418 int aim_cleansnacs(struct aim_session_t *, int maxage);
419 int aim_putsnac(u_char *, int, int, int, u_long);
420
421
422 void aim_connrst(struct aim_session_t *);
423 struct aim_conn_t *aim_conn_getnext(struct aim_session_t *);
424 void aim_conn_close(struct aim_conn_t *deadconn);
425 struct aim_conn_t *aim_getconn_type(struct aim_session_t *, int type);
426 struct aim_conn_t *aim_newconn(struct aim_session_t *, int type, char *dest);
427 int aim_conngetmaxfd(struct aim_session_t *);
428 struct aim_conn_t *aim_select(struct aim_session_t *, struct timeval *, int *);
429 int aim_conn_isready(struct aim_conn_t *);
430 int aim_conn_setstatus(struct aim_conn_t *, int);
431 void aim_session_init(struct aim_session_t *);
432
433 /* aim_misc.c */
434
435 #define AIM_VISIBILITYCHANGE_PERMITADD    0x05
436 #define AIM_VISIBILITYCHANGE_PERMITREMOVE 0x06
437 #define AIM_VISIBILITYCHANGE_DENYADD      0x07
438 #define AIM_VISIBILITYCHANGE_DENYREMOVE   0x08
439
440 u_long aim_bos_nop(struct aim_session_t *, struct aim_conn_t *);
441 u_long aim_bos_setidle(struct aim_session_t *, struct aim_conn_t *, u_long);
442 u_long aim_bos_changevisibility(struct aim_session_t *, struct aim_conn_t *, int, char *);
443 u_long aim_bos_setbuddylist(struct aim_session_t *, struct aim_conn_t *, char *);
444 u_long aim_bos_setprofile(struct aim_session_t *, struct aim_conn_t *, char *, char *, unsigned int);
445 u_long aim_bos_setgroupperm(struct aim_session_t *, struct aim_conn_t *, u_long);
446 u_long aim_bos_clientready(struct aim_session_t *, struct aim_conn_t *);
447 u_long aim_bos_reqrate(struct aim_session_t *, struct aim_conn_t *);
448 u_long aim_bos_ackrateresp(struct aim_session_t *, struct aim_conn_t *);
449 u_long aim_bos_setprivacyflags(struct aim_session_t *, struct aim_conn_t *, u_long);
450 u_long aim_bos_reqpersonalinfo(struct aim_session_t *, struct aim_conn_t *);
451 u_long aim_bos_reqservice(struct aim_session_t *, struct aim_conn_t *, u_short);
452 u_long aim_bos_reqrights(struct aim_session_t *, struct aim_conn_t *);
453 u_long aim_bos_reqbuddyrights(struct aim_session_t *, struct aim_conn_t *);
454 u_long aim_bos_reqlocaterights(struct aim_session_t *, struct aim_conn_t *);
455 u_long aim_bos_reqicbmparaminfo(struct aim_session_t *, struct aim_conn_t *);
456 u_long aim_setversions(struct aim_session_t *sess, struct aim_conn_t *conn);
457
458 /* aim_rxhandlers.c */
459 int aim_rxdispatch(struct aim_session_t *);
460 int aim_authparse(struct aim_session_t *, struct command_rx_struct *);
461 int aim_handleredirect_middle(struct aim_session_t *, struct command_rx_struct *, ...);
462 int aim_parse_unknown(struct aim_session_t *, struct command_rx_struct *, ...);
463 int aim_parse_last_bad(struct aim_session_t *, struct command_rx_struct *, ...);
464 int aim_parse_generalerrs(struct aim_session_t *, struct command_rx_struct *command, ...);
465 int aim_parsemotd_middle(struct aim_session_t *sess, struct command_rx_struct *command, ...);
466
467 /* aim_im.c */
468 #define AIM_IMFLAGS_AWAY 0x01 /* mark as an autoreply */
469 #define AIM_IMFLAGS_ACK  0x02 /* request a receipt notice */
470
471 u_long aim_send_im(struct aim_session_t *, struct aim_conn_t *, char *, u_int, char *);
472 int aim_parse_incoming_im_middle(struct aim_session_t *, struct command_rx_struct *);
473 u_long aim_seticbmparam(struct aim_session_t *, struct aim_conn_t *conn);
474 int aim_parse_msgerror_middle(struct aim_session_t *, struct command_rx_struct *);
475 int aim_negchan_middle(struct aim_session_t *sess, struct command_rx_struct *command);
476
477 /* aim_info.c */
478 #define AIM_CAPS_BUDDYICON 0x01
479 #define AIM_CAPS_VOICE 0x02
480 #define AIM_CAPS_IMIMAGE 0x04
481 #define AIM_CAPS_CHAT 0x08
482 #define AIM_CAPS_GETFILE 0x10
483 #define AIM_CAPS_SENDFILE 0x20
484
485 extern u_char aim_caps[6][16];
486 u_short aim_getcap(unsigned char *capblock, int buflen);
487 int aim_putcap(unsigned char *capblock, int buflen, u_short caps);
488
489 #define AIM_GETINFO_GENERALINFO 0x00001
490 #define AIM_GETINFO_AWAYMESSAGE 0x00003
491
492 struct aim_msgcookie_t {
493   unsigned char cookie[8];
494   int type;
495   void *data;
496   time_t addtime;
497   struct aim_msgcookie_t *next;
498 };
499
500 struct aim_filetransfer_t {
501   char sender[MAXSNLEN];        
502   char ip[30];
503   char *filename;
504 };
505 int aim_cachecookie(struct aim_session_t *sess, struct aim_msgcookie_t *cookie);
506 struct aim_msgcookie_t *aim_uncachecookie(struct aim_session_t *sess, char *cookie);
507 int aim_purgecookies(struct aim_session_t *sess);
508
509 #define AIM_TRANSFER_DENY_NOTSUPPORTED 0x0000
510 #define AIM_TRANSFER_DENY_DECLINE 0x0001
511 #define AIM_TRANSFER_DENY_NOTACCEPTING 0x0002
512 u_long aim_denytransfer(struct aim_session_t *sess, struct aim_conn_t *conn, char *sender, char *cookie, unsigned short code);
513 u_long aim_accepttransfer(struct aim_session_t *sess, struct aim_conn_t *conn, char *sender, char *cookie, unsigned short rendid);
514
515 u_long aim_getinfo(struct aim_session_t *, struct aim_conn_t *, const char *, unsigned short);
516 int aim_extractuserinfo(u_char *, struct aim_userinfo_s *);
517 int aim_parse_userinfo_middle(struct aim_session_t *, struct command_rx_struct *);
518 int aim_parse_oncoming_middle(struct aim_session_t *, struct command_rx_struct *);
519 int aim_parse_offgoing_middle(struct aim_session_t *, struct command_rx_struct *);
520 int aim_putuserinfo(u_char *buf, int buflen, struct aim_userinfo_s *info);
521 int aim_sendbuddyoncoming(struct aim_session_t *sess, struct aim_conn_t *conn, struct aim_userinfo_s *info);
522 int aim_sendbuddyoffgoing(struct aim_session_t *sess, struct aim_conn_t *conn, char *sn);
523
524
525 /* aim_auth.c */
526 int aim_auth_sendcookie(struct aim_session_t *, struct aim_conn_t *, u_char *);
527 u_long aim_auth_clientready(struct aim_session_t *, struct aim_conn_t *);
528 u_long aim_auth_changepasswd(struct aim_session_t *, struct aim_conn_t *, char *, char *);
529
530 /* aim_buddylist.c */
531 u_long aim_add_buddy(struct aim_session_t *, struct aim_conn_t *, char *);
532 u_long aim_remove_buddy(struct aim_session_t *, struct aim_conn_t *, char *);
533
534 /* aim_search.c */
535 u_long aim_usersearch_address(struct aim_session_t *, struct aim_conn_t *, char *);
536 /* u_long aim_usersearch_name(struct aim_session_t *, struct aim_conn_t *, char *); */
537
538
539 struct aim_chat_roominfo {
540   u_short exchange;
541   char *name;
542   u_short instance;
543 };
544 int aim_chat_readroominfo(u_char *buf, struct aim_chat_roominfo *outinfo);
545 int aim_chat_parse_infoupdate(struct aim_session_t *sess, struct command_rx_struct *command);
546 int aim_chat_parse_joined(struct aim_session_t *sess, struct command_rx_struct *command);
547 int aim_chat_parse_leave(struct aim_session_t *sess, struct command_rx_struct *command);
548 int aim_chat_parse_incoming(struct aim_session_t *sess, struct command_rx_struct *command);
549 u_long aim_chat_send_im(struct aim_session_t *sess, struct aim_conn_t *conn, char *msg);
550 u_long aim_chat_join(struct aim_session_t *sess, struct aim_conn_t *conn, u_short exchange, const char *roomname);
551 u_long aim_chat_clientready(struct aim_session_t *sess, struct aim_conn_t *conn);
552 int aim_chat_attachname(struct aim_conn_t *conn, char *roomname);
553 char *aim_chat_getname(struct aim_conn_t *conn);
554 struct aim_conn_t *aim_chat_getconn(struct aim_session_t *, char *name);
555
556 u_long aim_chatnav_reqrights(struct aim_session_t *sess, struct aim_conn_t *conn);
557 u_long aim_chatnav_clientready(struct aim_session_t *sess, struct aim_conn_t *conn);
558
559 u_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);
560
561 struct aim_chat_exchangeinfo {
562   u_short number;
563   char *name;
564   char *charset1;
565   char *lang1;
566   char *charset2;
567   char *lang2;
568 };
569 int aim_chatnav_parse_info(struct aim_session_t *sess, struct command_rx_struct *command);
570 u_long aim_chatnav_createroom(struct aim_session_t *sess, struct aim_conn_t *conn, char *name, u_short exchange);
571 int aim_chat_leaveroom(struct aim_session_t *sess, char *name);
572
573 /* aim_util.c */
574 #ifdef AIMUTIL_USEMACROS
575 /*
576  * These are really ugly.  You'd think this was LISP.  I wish it was.
577  */
578 #define aimutil_put8(buf, data) ((*(buf) = (u_char)(data)&0xff),1)
579 #define aimutil_get8(buf) ((*(buf))&0xff)
580 #define aimutil_put16(buf, data) ( \
581                                   (*(buf) = (u_char)((data)>>8)&0xff), \
582                                   (*((buf)+1) = (u_char)(data)&0xff),  \
583                                   2)
584 #define aimutil_get16(buf) ((((*(buf))<<8)&0xff00) + ((*((buf)+1)) & 0xff))
585 #define aimutil_put32(buf, data) ( \
586                                   (*((buf)) = (u_char)((data)>>24)&0xff), \
587                                   (*((buf)+1) = (u_char)((data)>>16)&0xff), \
588                                   (*((buf)+2) = (u_char)((data)>>8)&0xff), \
589                                   (*((buf)+3) = (u_char)(data)&0xff), \
590                                   4)
591 #define aimutil_get32(buf) ((((*(buf))<<24)&0xff000000) + \
592                             (((*((buf)+1))<<16)&0x00ff0000) + \
593                             (((*((buf)+2))<< 8)&0x0000ff00) + \
594                             (((*((buf)+3)    )&0x000000ff)))
595 #else
596 #warning Not using aimutil macros.  May have performance problems.
597 int aimutil_put8(u_char *, u_char);
598 u_char aimutil_get8(u_char *buf);
599 int aimutil_put16(u_char *, u_short);
600 u_short aimutil_get16(u_char *);
601 int aimutil_put32(u_char *, u_long);
602 u_long aimutil_get32(u_char *);
603 #endif
604
605 int aimutil_putstr(u_char *, const u_char *, int);
606 int aimutil_tokslen(char *toSearch, int index, char dl);
607 int aimutil_itemcnt(char *toSearch, char dl);
608 char *aimutil_itemidx(char *toSearch, int index, char dl);
609
610 int aim_snlen(const char *sn);
611 int aim_sncmp(const char *sn1, const char *sn2);
612
613 /* aim_meta.c */
614 char *aim_getbuilddate(void);
615 char *aim_getbuildtime(void);
616 char *aim_getbuildstring(void);
617
618 #endif /* __AIM_H__ */
619
This page took 0.073633 seconds and 3 git commands to generate.