source: protocols/oscar/aim.h @ 6042a54

Last change on this file since 6042a54 was 6042a54, checked in by Wilmer van der Gaast <wilmer@…>, at 2012-10-19T23:38:33Z

Massive cleanup in OSCAR.

  • Property mode set to 100644
File size: 26.5 KB
Line 
1/*
2 * Main libfaim header.  Must be included in client for prototypes/macros.
3 *
4 * "come on, i turned a chick lesbian; i think this is the hackish equivalent"
5 *                                                -- Josh Meyer
6 *
7 */
8
9#ifndef __AIM_H__
10#define __AIM_H__
11
12#include <stdio.h>
13#include <string.h>
14#include <fcntl.h>
15#include <sys/types.h>
16#include <stdlib.h>
17#include <stdarg.h>
18#include <errno.h>
19#include <time.h>
20#include <gmodule.h>
21
22#include "bitlbee.h"
23
24/* XXX adjust these based on autoconf-detected platform */
25typedef guint32 aim_snacid_t;
26typedef guint16 flap_seqnum_t;
27
28/* Portability stuff (DMP) */
29
30#if defined(mach) && defined(__APPLE__)
31#define gethostbyname(x) gethostbyname2(x, AF_INET)
32#endif
33
34/*
35 * Current Maximum Length for Screen Names (not including NULL)
36 *
37 * Currently only names up to 16 characters can be registered
38 * however it is aparently legal for them to be larger.
39 */
40#define MAXSNLEN 32
41
42/*
43 * Current Maximum Length for Instant Messages
44 *
45 * This was found basically by experiment, but not wholly
46 * accurate experiment.  It should not be regarded
47 * as completely correct.  But its a decent approximation.
48 *
49 * Note that although we can send this much, its impossible
50 * for WinAIM clients (up through the latest (4.0.1957)) to
51 * send any more than 1kb.  Amaze all your windows friends
52 * with utterly oversized instant messages!
53 *
54 * XXX: the real limit is the total SNAC size at 8192. Fix this.
55 *
56 */
57#define MAXMSGLEN 7987
58
59/*
60 * Maximum size of a Buddy Icon.
61 */
62#define MAXICONLEN 7168
63#define AIM_ICONIDENT "AVT1picture.id"
64
65/*
66 * Current Maximum Length for Chat Room Messages
67 *
68 * This is actually defined by the protocol to be
69 * dynamic, but I have yet to see due cause to
70 * define it dynamically here.  Maybe later.
71 *
72 */
73#define MAXCHATMSGLEN 512
74
75/*
76 * Standard size of an AIM authorization cookie
77 */
78#define AIM_COOKIELEN            0x100
79
80#define AIM_MD5_STRING "AOL Instant Messenger (SM)"
81
82/*
83 * Default Authorizer server name and TCP port for the OSCAR farm. 
84 *
85 * You shouldn't need to change this unless you're writing
86 * your own server.
87 *
88 * Note that only one server is needed to start the whole
89 * AIM process.  The later server addresses come from
90 * the authorizer service.
91 *
92 * This is only here for convenience.  Its still up to
93 * the client to connect to it.
94 *
95 */
96#define AIM_DEFAULT_LOGIN_SERVER_AIM "login.messaging.aol.com"
97#define AIM_DEFAULT_LOGIN_SERVER_ICQ "login.icq.com"
98#define AIM_LOGIN_PORT 5190
99
100/*
101 * Size of the SNAC caching hash.
102 *
103 * Default: 16
104 *
105 */
106#define AIM_SNAC_HASH_SIZE 16
107
108/*
109 * Client info.  Filled in by the client and passed in to
110 * aim_send_login().  The information ends up getting passed to OSCAR
111 * through the initial login command.
112 *
113 */
114struct client_info_s {
115        const char *clientstring;
116        guint16 clientid;
117        int major;
118        int minor;
119        int point;
120        int build;
121        const char *country; /* two-letter abbrev */
122        const char *lang; /* two-letter abbrev */
123};
124
125#define AIM_CLIENTINFO_KNOWNGOOD_3_5_1670 { \
126        "AOL Instant Messenger (SM), version 3.5.1670/WIN32", \
127        0x0004, \
128        0x0003, \
129        0x0005, \
130        0x0000, \
131        0x0686, \
132        "us", \
133        "en", \
134}
135
136#define AIM_CLIENTINFO_KNOWNGOOD_4_1_2010 { \
137          "AOL Instant Messenger (SM), version 4.1.2010/WIN32", \
138          0x0004, \
139          0x0004, \
140          0x0001, \
141          0x0000, \
142          0x07da, \
143          "us", \
144          "en", \
145}
146
147#define AIM_CLIENTINFO_KNOWNGOOD_5_1_3036 { \
148        "AOL Instant Messenger, version 5.1.3036/WIN32", \
149        0x0109, \
150        0x0005, \
151        0x0001, \
152        0x0000, \
153        0x0bdc, \
154        "us", \
155        "en", \
156}
157
158/*
159 * I would make 4.1.2010 the default, but they seem to have found
160 * an alternate way of breaking that one.
161 *
162 * 3.5.1670 should work fine, however, you will be subjected to the
163 * memory test, which may require you to have a WinAIM binary laying
164 * around. (see login.c::memrequest())
165 */
166#define AIM_CLIENTINFO_KNOWNGOOD AIM_CLIENTINFO_KNOWNGOOD_5_1_3036
167
168#ifndef TRUE
169#define TRUE 1
170#define FALSE 0
171#endif
172
173/*
174 * These could be arbitrary, but its easier to use the actual AIM values
175 */
176#define AIM_CONN_TYPE_AUTH          0x0007
177#define AIM_CONN_TYPE_ADS           0x0005
178#define AIM_CONN_TYPE_BOS           0x0002
179#define AIM_CONN_TYPE_CHAT          0x000e
180#define AIM_CONN_TYPE_CHATNAV       0x000d
181
182/*
183 * Status values returned from aim_conn_new().  ORed together.
184 */
185#define AIM_CONN_STATUS_READY       0x0001
186#define AIM_CONN_STATUS_INTERNALERR 0x0002
187#define AIM_CONN_STATUS_RESOLVERR   0x0040
188#define AIM_CONN_STATUS_CONNERR     0x0080
189#define AIM_CONN_STATUS_INPROGRESS  0x0100
190
191#define AIM_FRAMETYPE_FLAP 0x0000
192
193/*
194 * message type flags
195 */
196#define AIM_MTYPE_PLAIN     0x01
197#define AIM_MTYPE_CHAT      0x02
198#define AIM_MTYPE_FILEREQ   0x03
199#define AIM_MTYPE_URL       0x04
200#define AIM_MTYPE_AUTHREQ   0x06
201#define AIM_MTYPE_AUTHDENY  0x07
202#define AIM_MTYPE_AUTHOK    0x08
203#define AIM_MTYPE_SERVER    0x09
204#define AIM_MTYPE_ADDED     0x0C
205#define AIM_MTYPE_WWP       0x0D
206#define AIM_MTYPE_EEXPRESS  0x0E
207#define AIM_MTYPE_CONTACTS  0x13
208#define AIM_MTYPE_PLUGIN    0x1A
209#define AIM_MTYPE_AUTOAWAY      0xE8
210#define AIM_MTYPE_AUTOBUSY      0xE9
211#define AIM_MTYPE_AUTONA        0xEA
212#define AIM_MTYPE_AUTODND       0xEB
213#define AIM_MTYPE_AUTOFFC       0xEC
214
215typedef struct aim_conn_s {
216        int fd;
217        guint16 type;
218        guint16 subtype;
219        flap_seqnum_t seqnum;
220        guint32 status;
221        void *priv; /* misc data the client may want to store */
222        void *internal; /* internal conn-specific libfaim data */
223        time_t lastactivity; /* time of last transmit */
224        int forcedlatency; 
225        void *handlerlist;
226        void *sessv; /* pointer to parent session */
227        void *inside; /* only accessible from inside libfaim */
228        struct aim_conn_s *next;
229} aim_conn_t;
230
231/*
232 * Byte Stream type. Sort of.
233 *
234 * Use of this type serves a couple purposes:
235 *   - Buffer/buflen pairs are passed all around everywhere. This turns
236 *     that into one value, as well as abstracting it slightly.
237 *   - Through the abstraction, it is possible to enable bounds checking
238 *     for robustness at the cost of performance.  But a clean failure on
239 *     weird packets is much better than a segfault.
240 *   - I like having variables named "bs".
241 *
242 * Don't touch the insides of this struct.  Or I'll have to kill you.
243 *
244 */
245typedef struct aim_bstream_s {
246        guint8 *data;
247        guint32 len;
248        guint32 offset;
249} aim_bstream_t;
250
251typedef struct aim_frame_s {
252        guint8 hdrtype; /* defines which piece of the union to use */
253        union {
254                struct { 
255                        guint8 type;
256                        flap_seqnum_t seqnum;     
257                } flap;
258        } hdr;
259        aim_bstream_t data;     /* payload stream */
260        guint8 handled;         /* 0 = new, !0 = been handled */
261        guint8 nofree;          /* 0 = free data on purge, 1 = only unlink */
262        aim_conn_t *conn;  /* the connection it came in on... */
263        struct aim_frame_s *next;
264} aim_frame_t;
265
266typedef struct aim_msgcookie_s {
267        unsigned char cookie[8];
268        int type;
269        void *data;
270        time_t addtime;
271        struct aim_msgcookie_s *next;
272} aim_msgcookie_t;
273
274/*
275 * AIM Session: The main client-data interface. 
276 *
277 */
278typedef struct aim_session_s {
279
280        /* ---- Client Accessible ------------------------ */
281
282        /* Our screen name. */
283        char sn[MAXSNLEN+1];
284
285        /*
286         * Pointer to anything the client wants to
287         * explicitly associate with this session.
288         *
289         * This is for use in the callbacks mainly. In any
290         * callback, you can access this with sess->aux_data.
291         *
292         */
293        void *aux_data;
294
295        /* ---- Internal Use Only ------------------------ */
296
297        /* Server-stored information (ssi) */
298        struct {
299                int received_data;
300                guint16 revision;
301                struct aim_ssi_item *items;
302                time_t timestamp;
303                int waiting_for_ack;
304                aim_frame_t *holding_queue;
305        } ssi;
306
307        /* Connection information */
308        aim_conn_t *connlist;
309
310        /*
311         * Transmit/receive queues.
312         *
313         * These are only used when you don't use your own lowlevel
314         * I/O.  I don't suggest that you use libfaim's internal I/O.
315         * Its really bad and the API/event model is quirky at best.
316         * 
317         */
318        aim_frame_t *queue_outgoing;   
319        aim_frame_t *queue_incoming; 
320
321        /*
322         * Tx Enqueuing function.
323         *
324         * This is how you override the transmit direction of libfaim's
325         * internal I/O.  This function will be called whenever it needs
326         * to send something.
327         *
328         */
329        int (*tx_enqueue)(struct aim_session_s *, aim_frame_t *);
330
331        /*
332         * Outstanding snac handling
333         *
334         * XXX: Should these be per-connection? -mid
335         */
336        void *snac_hash[AIM_SNAC_HASH_SIZE];
337        aim_snacid_t snacid_next;
338
339        struct aim_icq_info *icq_info;
340        struct aim_oft_info *oft_info;
341        struct aim_authresp_info *authinfo;
342        struct aim_emailinfo *emailinfo;
343
344        struct {
345                struct aim_userinfo_s *userinfo;
346                struct userinfo_node *torequest;
347                struct userinfo_node *requested;
348                int waiting_for_response;
349        } locate;
350
351        guint32 flags; /* AIM_SESS_FLAGS_ */
352
353        aim_msgcookie_t *msgcookies;
354
355        void *modlistv;
356
357        guint8 aim_icq_state;  /* ICQ representation of away state */
358} aim_session_t;
359
360/* Values for sess->flags */
361#define AIM_SESS_FLAGS_SNACLOGIN         0x00000001
362#define AIM_SESS_FLAGS_XORLOGIN          0x00000002
363#define AIM_SESS_FLAGS_NONBLOCKCONNECT   0x00000004
364#define AIM_SESS_FLAGS_DONTTIMEOUTONICBM 0x00000008
365
366/* Valid for calling aim_icq_setstatus() and for aim_userinfo_t->icqinfo.status */
367#define AIM_ICQ_STATE_NORMAL    0x00000000
368#define AIM_ICQ_STATE_AWAY      0x00000001
369#define AIM_ICQ_STATE_DND       0x00000002
370#define AIM_ICQ_STATE_OUT       0x00000004
371#define AIM_ICQ_STATE_BUSY      0x00000010
372#define AIM_ICQ_STATE_CHAT      0x00000020
373#define AIM_ICQ_STATE_INVISIBLE 0x00000100
374#define AIM_ICQ_STATE_WEBAWARE  0x00010000
375#define AIM_ICQ_STATE_HIDEIP            0x00020000
376#define AIM_ICQ_STATE_BIRTHDAY          0x00080000
377#define AIM_ICQ_STATE_DIRECTDISABLED    0x00100000
378#define AIM_ICQ_STATE_ICQHOMEPAGE       0x00200000
379#define AIM_ICQ_STATE_DIRECTREQUIREAUTH 0x10000000
380#define AIM_ICQ_STATE_DIRECTCONTACTLIST 0x20000000
381
382/*
383 * AIM User Info, Standard Form.
384 */
385typedef struct {
386        char sn[MAXSNLEN+1];
387        guint16 warnlevel;
388        guint16 idletime;
389        guint16 flags;
390        guint32 membersince;
391        guint32 onlinesince;
392        guint32 sessionlen; 
393        guint32 capabilities;
394        struct {
395                guint32 status;
396                guint32 ipaddr;
397                guint8 crap[0x25]; /* until we figure it out... */
398        } icqinfo;
399        guint32 present;
400} aim_userinfo_t;
401
402#define AIM_USERINFO_PRESENT_FLAGS        0x00000001
403#define AIM_USERINFO_PRESENT_MEMBERSINCE  0x00000002
404#define AIM_USERINFO_PRESENT_ONLINESINCE  0x00000004
405#define AIM_USERINFO_PRESENT_IDLE         0x00000008
406#define AIM_USERINFO_PRESENT_ICQEXTSTATUS 0x00000010
407#define AIM_USERINFO_PRESENT_ICQIPADDR    0x00000020
408#define AIM_USERINFO_PRESENT_ICQDATA      0x00000040
409#define AIM_USERINFO_PRESENT_CAPABILITIES 0x00000080
410#define AIM_USERINFO_PRESENT_SESSIONLEN   0x00000100
411
412#define AIM_FLAG_UNCONFIRMED    0x0001 /* "damned transients" */
413#define AIM_FLAG_ADMINISTRATOR  0x0002
414#define AIM_FLAG_AOL            0x0004
415#define AIM_FLAG_OSCAR_PAY      0x0008
416#define AIM_FLAG_FREE           0x0010
417#define AIM_FLAG_AWAY           0x0020
418#define AIM_FLAG_ICQ            0x0040
419#define AIM_FLAG_WIRELESS       0x0080
420#define AIM_FLAG_UNKNOWN100     0x0100
421#define AIM_FLAG_UNKNOWN200     0x0200
422#define AIM_FLAG_ACTIVEBUDDY    0x0400
423#define AIM_FLAG_UNKNOWN800     0x0800
424#define AIM_FLAG_ABINTERNAL     0x1000
425
426#define AIM_FLAG_ALLUSERS       0x001f
427
428/*
429 * TLV handling
430 */
431
432/* Generic TLV structure. */
433typedef struct aim_tlv_s {
434        guint16 type;
435        guint16 length;
436        guint8 *value;
437} aim_tlv_t;
438
439/* List of above. */
440typedef struct aim_tlvlist_s {
441        aim_tlv_t *tlv;
442        struct aim_tlvlist_s *next;
443} aim_tlvlist_t;
444
445/* TLV-handling functions */
446
447#if 0
448/* Very, very raw TLV handling. */
449int aim_puttlv_8(guint8 *buf, const guint16 t, const guint8 v);
450int aim_puttlv_16(guint8 *buf, const guint16 t, const guint16 v);
451int aim_puttlv_32(guint8 *buf, const guint16 t, const guint32 v);
452int aim_puttlv_raw(guint8 *buf, const guint16 t, const guint16 l, const guint8 *v);
453#endif
454
455/* TLV list handling. */
456aim_tlvlist_t *aim_readtlvchain(aim_bstream_t *bs);
457void aim_freetlvchain(aim_tlvlist_t **list);
458aim_tlv_t *aim_gettlv(aim_tlvlist_t *list, guint16 t, const int n);
459char *aim_gettlv_str(aim_tlvlist_t *list, const guint16 t, const int n);
460guint8 aim_gettlv8(aim_tlvlist_t *list, const guint16 type, const int num);
461guint16 aim_gettlv16(aim_tlvlist_t *list, const guint16 t, const int n);
462guint32 aim_gettlv32(aim_tlvlist_t *list, const guint16 t, const int n);
463int aim_writetlvchain(aim_bstream_t *bs, aim_tlvlist_t **list);
464int aim_addtlvtochain8(aim_tlvlist_t **list, const guint16 t, const guint8 v);
465int aim_addtlvtochain16(aim_tlvlist_t **list, const guint16 t, const guint16 v);
466int aim_addtlvtochain32(aim_tlvlist_t **list, const guint16 type, const guint32 v);
467int aim_addtlvtochain_raw(aim_tlvlist_t **list, const guint16 t, const guint16 l, const guint8 *v);
468int aim_addtlvtochain_caps(aim_tlvlist_t **list, const guint16 t, const guint32 caps);
469int aim_addtlvtochain_noval(aim_tlvlist_t **list, const guint16 type);
470int aim_addtlvtochain_chatroom(aim_tlvlist_t **list, guint16 type, guint16 exchange, const char *roomname, guint16 instance);
471int aim_addtlvtochain_userinfo(aim_tlvlist_t **list, guint16 type, aim_userinfo_t *ui);
472int aim_addtlvtochain_frozentlvlist(aim_tlvlist_t **list, guint16 type, aim_tlvlist_t **tl);
473int aim_counttlvchain(aim_tlvlist_t **list);
474int aim_sizetlvchain(aim_tlvlist_t **list);
475
476
477/*
478 * Get command from connections
479 *
480 * aim_get_commmand() is the libfaim lowlevel I/O in the receive direction.
481 * XXX Make this easily overridable.
482 *
483 */
484int aim_get_command(aim_session_t *, aim_conn_t *);
485
486/*
487 * Dispatch commands that are in the rx queue.
488 */
489void aim_rxdispatch(aim_session_t *);
490
491int aim_debugconn_sendconnect(aim_session_t *sess, aim_conn_t *conn);
492
493typedef int (*aim_rxcallback_t)(aim_session_t *, aim_frame_t *, ...);
494
495struct aim_clientrelease {
496        char *name;
497        guint32 build;
498        char *url;
499        char *info;
500};
501
502struct aim_authresp_info {
503        char *sn;
504        guint16 errorcode;
505        char *errorurl;
506        guint16 regstatus;
507        char *email;
508        char *bosip;
509        guint8 *cookie;
510        struct aim_clientrelease latestrelease;
511        struct aim_clientrelease latestbeta;
512};
513
514/* Callback data for redirect. */
515struct aim_redirect_data {
516        guint16 group;
517        const char *ip;
518        const guint8 *cookie;
519        struct { /* group == AIM_CONN_TYPE_CHAT */
520                guint16 exchange;
521                const char *room;
522                guint16 instance;
523        } chat;
524};
525
526int aim_clientready(aim_session_t *sess, aim_conn_t *conn);
527int aim_sendflapver(aim_session_t *sess, aim_conn_t *conn);
528int aim_request_login(aim_session_t *sess, aim_conn_t *conn, const char *sn);
529int aim_send_login(aim_session_t *, aim_conn_t *, const char *, const char *, struct client_info_s *, const char *key);
530int aim_encode_password_md5(const char *password, const char *key, unsigned char *digest);
531void aim_purge_rxqueue(aim_session_t *);
532
533#define AIM_TX_QUEUED    0 /* default */
534#define AIM_TX_IMMEDIATE 1
535#define AIM_TX_USER      2
536int aim_tx_setenqueue(aim_session_t *sess, int what, int (*func)(aim_session_t *, aim_frame_t *));
537
538int aim_tx_flushqueue(aim_session_t *);
539void aim_tx_purgequeue(aim_session_t *);
540
541int aim_conn_setlatency(aim_conn_t *conn, int newval);
542
543void aim_conn_kill(aim_session_t *sess, aim_conn_t **deadconn);
544
545int aim_conn_addhandler(aim_session_t *, aim_conn_t *conn, u_short family, u_short type, aim_rxcallback_t newhandler, u_short flags);
546int aim_clearhandlers(aim_conn_t *conn);
547
548aim_conn_t *aim_conn_findbygroup(aim_session_t *sess, guint16 group);
549aim_session_t *aim_conn_getsess(aim_conn_t *conn);
550void aim_conn_close(aim_conn_t *deadconn);
551aim_conn_t *aim_newconn(aim_session_t *, int type, const char *dest);
552int aim_conngetmaxfd(aim_session_t *);
553aim_conn_t *aim_select(aim_session_t *, struct timeval *, int *);
554int aim_conn_isready(aim_conn_t *);
555int aim_conn_setstatus(aim_conn_t *, int);
556int aim_conn_completeconnect(aim_session_t *sess, aim_conn_t *conn);
557int aim_conn_isconnecting(aim_conn_t *conn);
558
559typedef void (*faim_debugging_callback_t)(aim_session_t *sess, int level, const char *format, va_list va);
560int aim_setdebuggingcb(aim_session_t *sess, faim_debugging_callback_t);
561void aim_session_init(aim_session_t *, guint32 flags, int debuglevel);
562void aim_session_kill(aim_session_t *);
563void aim_setupproxy(aim_session_t *sess, const char *server, const char *username, const char *password);
564aim_conn_t *aim_getconn_type(aim_session_t *, int type);
565aim_conn_t *aim_getconn_type_all(aim_session_t *, int type);
566aim_conn_t *aim_getconn_fd(aim_session_t *, int fd);
567
568/* aim_misc.c */
569
570
571struct aim_chat_roominfo {
572        unsigned short exchange;
573        char *name;
574        unsigned short instance;
575};
576
577struct aim_chat_invitation {
578        struct im_connection * ic;
579        char * name;
580        guint8 exchange;
581};
582
583#define AIM_VISIBILITYCHANGE_PERMITADD    0x05
584#define AIM_VISIBILITYCHANGE_PERMITREMOVE 0x06
585#define AIM_VISIBILITYCHANGE_DENYADD      0x07
586#define AIM_VISIBILITYCHANGE_DENYREMOVE   0x08
587
588#define AIM_PRIVFLAGS_ALLOWIDLE           0x01
589#define AIM_PRIVFLAGS_ALLOWMEMBERSINCE    0x02
590
591#define AIM_WARN_ANON                     0x01
592
593int aim_flap_nop(aim_session_t *sess, aim_conn_t *conn);
594int aim_bos_setprofile(aim_session_t *sess, aim_conn_t *conn, const char *profile, const char *awaymsg, guint32 caps);
595int aim_bos_setgroupperm(aim_session_t *, aim_conn_t *, guint32 mask);
596int aim_bos_setprivacyflags(aim_session_t *, aim_conn_t *, guint32);
597int aim_reqpersonalinfo(aim_session_t *, aim_conn_t *);
598int aim_reqservice(aim_session_t *, aim_conn_t *, guint16);
599int aim_bos_reqrights(aim_session_t *, aim_conn_t *);
600int aim_bos_reqbuddyrights(aim_session_t *, aim_conn_t *);
601int aim_bos_reqlocaterights(aim_session_t *, aim_conn_t *);
602int aim_setextstatus(aim_session_t *sess, aim_conn_t *conn, guint32 status);
603
604struct aim_fileheader_t *aim_getlisting(aim_session_t *sess, FILE *);
605
606#define AIM_CLIENTTYPE_UNKNOWN  0x0000
607#define AIM_CLIENTTYPE_MC       0x0001
608#define AIM_CLIENTTYPE_WINAIM   0x0002
609#define AIM_CLIENTTYPE_WINAIM41 0x0003
610#define AIM_CLIENTTYPE_AOL_TOC  0x0004
611
612#define AIM_RATE_CODE_CHANGE     0x0001
613#define AIM_RATE_CODE_WARNING    0x0002
614#define AIM_RATE_CODE_LIMIT      0x0003
615#define AIM_RATE_CODE_CLEARLIMIT 0x0004
616int aim_ads_requestads(aim_session_t *sess, aim_conn_t *conn);
617
618/* aim_im.c */
619
620aim_conn_t *aim_sendfile_initiate(aim_session_t *, const char *destsn, const char *filename, guint16 numfiles, guint32 totsize);
621
622aim_conn_t *aim_getfile_initiate(aim_session_t *sess, aim_conn_t *conn, const char *destsn);
623int aim_oft_getfile_request(aim_session_t *sess, aim_conn_t *conn, const char *name, int size);
624int aim_oft_getfile_ack(aim_session_t *sess, aim_conn_t *conn);
625int aim_oft_getfile_end(aim_session_t *sess, aim_conn_t *conn);
626
627#define AIM_SENDMEMBLOCK_FLAG_ISREQUEST  0
628#define AIM_SENDMEMBLOCK_FLAG_ISHASH     1
629
630#define AIM_GETINFO_GENERALINFO 0x00001
631#define AIM_GETINFO_AWAYMESSAGE 0x00003
632#define AIM_GETINFO_CAPABILITIES 0x0004
633
634struct aim_invite_priv {
635        char *sn;
636        char *roomname;
637        guint16 exchange;
638        guint16 instance;
639};
640
641#define AIM_COOKIETYPE_UNKNOWN  0x00
642#define AIM_COOKIETYPE_ICBM     0x01
643#define AIM_COOKIETYPE_ADS      0x02
644#define AIM_COOKIETYPE_BOS      0x03
645#define AIM_COOKIETYPE_IM       0x04
646#define AIM_COOKIETYPE_CHAT     0x05
647#define AIM_COOKIETYPE_CHATNAV  0x06
648#define AIM_COOKIETYPE_INVITE   0x07
649
650int aim_handlerendconnect(aim_session_t *sess, aim_conn_t *cur);
651
652#define AIM_TRANSFER_DENY_NOTSUPPORTED 0x0000
653#define AIM_TRANSFER_DENY_DECLINE 0x0001
654#define AIM_TRANSFER_DENY_NOTACCEPTING 0x0002
655aim_conn_t *aim_accepttransfer(aim_session_t *sess, aim_conn_t *conn, const char *sn, const guint8 *cookie, const guint8 *ip, guint16 listingfiles, guint16 listingtotsize, guint16 listingsize, guint32 listingchecksum, guint16 rendid);
656
657int aim_getinfo(aim_session_t *, aim_conn_t *, const char *, unsigned short);
658
659#define AIM_IMPARAM_FLAG_CHANMSGS_ALLOWED       0x00000001
660#define AIM_IMPARAM_FLAG_MISSEDCALLS_ENABLED    0x00000002
661
662/* This is what the server will give you if you don't set them yourself. */
663#define AIM_IMPARAM_DEFAULTS { \
664        0, \
665        AIM_IMPARAM_FLAG_CHANMSGS_ALLOWED | AIM_IMPARAM_FLAG_MISSEDCALLS_ENABLED, \
666        512, /* !! Note how small this is. */ \
667        (99.9)*10, (99.9)*10, \
668        1000 /* !! And how large this is. */ \
669}
670
671/* This is what most AIM versions use. */
672#define AIM_IMPARAM_REASONABLE { \
673        0, \
674        AIM_IMPARAM_FLAG_CHANMSGS_ALLOWED | AIM_IMPARAM_FLAG_MISSEDCALLS_ENABLED, \
675        8000, \
676        (99.9)*10, (99.9)*10, \
677        0 \
678}
679
680
681struct aim_icbmparameters {
682        guint16 maxchan;
683        guint32 flags; /* AIM_IMPARAM_FLAG_ */
684        guint16 maxmsglen; /* message size that you will accept */
685        guint16 maxsenderwarn; /* this and below are *10 (999=99.9%) */
686        guint16 maxrecverwarn;
687        guint32 minmsginterval; /* in milliseconds? */
688};
689
690int aim_reqicbmparams(aim_session_t *sess);
691int aim_seticbmparam(aim_session_t *sess, struct aim_icbmparameters *params);
692
693/* auth.c */
694int aim_sendcookie(aim_session_t *, aim_conn_t *, const guint8 *);
695
696int aim_admin_changepasswd(aim_session_t *, aim_conn_t *, const char *newpw, const char *curpw);
697int aim_admin_reqconfirm(aim_session_t *sess, aim_conn_t *conn);
698int aim_admin_getinfo(aim_session_t *sess, aim_conn_t *conn, guint16 info);
699int aim_admin_setemail(aim_session_t *sess, aim_conn_t *conn, const char *newemail);
700int aim_admin_setnick(aim_session_t *sess, aim_conn_t *conn, const char *newnick);
701
702/* These apply to exchanges as well. */
703#define AIM_CHATROOM_FLAG_EVILABLE 0x0001
704#define AIM_CHATROOM_FLAG_NAV_ONLY 0x0002
705#define AIM_CHATROOM_FLAG_INSTANCING_ALLOWED 0x0004
706#define AIM_CHATROOM_FLAG_OCCUPANT_PEEK_ALLOWED 0x0008
707
708struct aim_chat_exchangeinfo {
709        guint16 number;
710        guint16 flags;
711        char *name;
712        char *charset1;
713        char *lang1;
714        char *charset2;
715        char *lang2;
716};
717
718#define AIM_CHATFLAGS_NOREFLECT         0x0001
719#define AIM_CHATFLAGS_AWAY              0x0002
720#define AIM_CHATFLAGS_UNICODE           0x0004
721#define AIM_CHATFLAGS_ISO_8859_1        0x0008
722
723int aim_chat_send_im(aim_session_t *sess, aim_conn_t *conn, guint16 flags, const char *msg, int msglen);
724int aim_chat_join(aim_session_t *sess, aim_conn_t *conn, guint16 exchange, const char *roomname, guint16 instance);
725
726int aim_chatnav_reqrights(aim_session_t *sess, aim_conn_t *conn);
727
728int aim_chat_invite(aim_session_t *sess, aim_conn_t *conn, const char *sn, const char *msg, guint16 exchange, const char *roomname, guint16 instance);
729
730int aim_chatnav_createroom(aim_session_t *sess, aim_conn_t *conn, const char *name, guint16 exchange);
731
732/* aim_util.c */
733/*
734 * These are really ugly.  You'd think this was LISP.  I wish it was.
735 *
736 * XXX With the advent of bstream's, these should be removed to enforce
737 * their use.
738 *
739 */
740#define aimutil_put8(buf, data) ((*(buf) = (u_char)(data)&0xff),1)
741#define aimutil_get8(buf) ((*(buf))&0xff)
742#define aimutil_put16(buf, data) ( \
743                (*(buf) = (u_char)((data)>>8)&0xff), \
744                (*((buf)+1) = (u_char)(data)&0xff),  \
745                2)
746#define aimutil_get16(buf) ((((*(buf))<<8)&0xff00) + ((*((buf)+1)) & 0xff))
747#define aimutil_put32(buf, data) ( \
748                (*((buf)) = (u_char)((data)>>24)&0xff), \
749                (*((buf)+1) = (u_char)((data)>>16)&0xff), \
750                (*((buf)+2) = (u_char)((data)>>8)&0xff), \
751                (*((buf)+3) = (u_char)(data)&0xff), \
752                4)
753#define aimutil_get32(buf) ((((*(buf))<<24)&0xff000000) + \
754                (((*((buf)+1))<<16)&0x00ff0000) + \
755                (((*((buf)+2))<< 8)&0x0000ff00) + \
756                (((*((buf)+3)    )&0x000000ff)))
757
758/* Little-endian versions (damn ICQ) */
759#define aimutil_putle8(buf, data) ( \
760                (*(buf) = (unsigned char)(data) & 0xff), \
761                1)
762#define aimutil_getle8(buf) ( \
763                (*(buf)) & 0xff \
764                )
765#define aimutil_putle16(buf, data) ( \
766                (*((buf)+0) = (unsigned char)((data) >> 0) & 0xff),  \
767                (*((buf)+1) = (unsigned char)((data) >> 8) & 0xff), \
768                2)
769#define aimutil_getle16(buf) ( \
770                (((*((buf)+0)) << 0) & 0x00ff) + \
771                (((*((buf)+1)) << 8) & 0xff00) \
772                )
773#define aimutil_putle32(buf, data) ( \
774                (*((buf)+0) = (unsigned char)((data) >>  0) & 0xff), \
775                (*((buf)+1) = (unsigned char)((data) >>  8) & 0xff), \
776                (*((buf)+2) = (unsigned char)((data) >> 16) & 0xff), \
777                (*((buf)+3) = (unsigned char)((data) >> 24) & 0xff), \
778                4)
779#define aimutil_getle32(buf) ( \
780                (((*((buf)+0)) <<  0) & 0x000000ff) + \
781                (((*((buf)+1)) <<  8) & 0x0000ff00) + \
782                (((*((buf)+2)) << 16) & 0x00ff0000) + \
783                (((*((buf)+3)) << 24) & 0xff000000))
784
785
786int aim_sncmp(const char *a, const char *b);
787
788#include <aim_internal.h>
789
790/*
791 * SNAC Families.
792 */
793#define AIM_CB_FAM_ACK 0x0000
794#define AIM_CB_FAM_GEN 0x0001
795#define AIM_CB_FAM_SPECIAL 0xffff /* Internal libfaim use */
796
797/*
798 * SNAC Family: Ack.
799 *
800 * Not really a family, but treating it as one really
801 * helps it fit into the libfaim callback structure better.
802 *
803 */
804#define AIM_CB_ACK_ACK 0x0001
805
806/*
807 * SNAC Family: General.
808 */ 
809#define AIM_CB_GEN_ERROR 0x0001
810#define AIM_CB_GEN_CLIENTREADY 0x0002
811#define AIM_CB_GEN_SERVERREADY 0x0003
812#define AIM_CB_GEN_SERVICEREQ 0x0004
813#define AIM_CB_GEN_REDIRECT 0x0005
814#define AIM_CB_GEN_RATEINFOREQ 0x0006
815#define AIM_CB_GEN_RATEINFO 0x0007
816#define AIM_CB_GEN_RATEINFOACK 0x0008
817#define AIM_CB_GEN_RATECHANGE 0x000a
818#define AIM_CB_GEN_SERVERPAUSE 0x000b
819#define AIM_CB_GEN_SERVERRESUME 0x000d
820#define AIM_CB_GEN_REQSELFINFO 0x000e
821#define AIM_CB_GEN_SELFINFO 0x000f
822#define AIM_CB_GEN_EVIL 0x0010
823#define AIM_CB_GEN_SETIDLE 0x0011
824#define AIM_CB_GEN_MIGRATIONREQ 0x0012
825#define AIM_CB_GEN_MOTD 0x0013
826#define AIM_CB_GEN_SETPRIVFLAGS 0x0014
827#define AIM_CB_GEN_WELLKNOWNURL 0x0015
828#define AIM_CB_GEN_NOP 0x0016
829#define AIM_CB_GEN_DEFAULT 0xffff
830
831/*
832 * SNAC Family: Advertisement Services
833 */ 
834#define AIM_CB_ADS_ERROR 0x0001
835#define AIM_CB_ADS_DEFAULT 0xffff
836
837/*
838 * OFT Services
839 *
840 * See non-SNAC note below.
841 */
842#define AIM_CB_OFT_DIRECTIMCONNECTREQ 0x0001/* connect request -- actually an OSCAR CAP*/
843#define AIM_CB_OFT_DIRECTIMINCOMING 0x0002
844#define AIM_CB_OFT_DIRECTIMDISCONNECT 0x0003
845#define AIM_CB_OFT_DIRECTIMTYPING 0x0004
846#define AIM_CB_OFT_DIRECTIMINITIATE 0x0005
847
848#define AIM_CB_OFT_GETFILECONNECTREQ 0x0006 /* connect request -- actually an OSCAR CAP*/
849#define AIM_CB_OFT_GETFILELISTINGREQ 0x0007 /* OFT listing.txt request */
850#define AIM_CB_OFT_GETFILEFILEREQ 0x0008    /* received file request */
851#define AIM_CB_OFT_GETFILEFILESEND 0x0009   /* received file request confirm -- send data */
852#define AIM_CB_OFT_GETFILECOMPLETE 0x000a   /* received file send complete*/
853#define AIM_CB_OFT_GETFILEINITIATE 0x000b   /* request for file get acknowledge */
854#define AIM_CB_OFT_GETFILEDISCONNECT 0x000c   /* OFT connection disconnected.*/
855#define AIM_CB_OFT_GETFILELISTING 0x000d   /* OFT listing.txt received.*/
856#define AIM_CB_OFT_GETFILERECEIVE 0x000e   /* OFT file incoming.*/
857#define AIM_CB_OFT_GETFILELISTINGRXCONFIRM 0x000f
858#define AIM_CB_OFT_GETFILESTATE4 0x0010
859
860#define AIM_CB_OFT_SENDFILEDISCONNECT 0x0020   /* OFT connection disconnected.*/
861
862
863
864/*
865 * SNAC Family: Internal Messages
866 *
867 * This isn't truely a SNAC family either, but using
868 * these, we can integrated non-SNAC services into
869 * the SNAC-centered libfaim callback structure.
870 *
871 */ 
872#define AIM_CB_SPECIAL_AUTHSUCCESS 0x0001
873#define AIM_CB_SPECIAL_AUTHOTHER 0x0002
874#define AIM_CB_SPECIAL_CONNERR 0x0003
875#define AIM_CB_SPECIAL_CONNCOMPLETE 0x0004
876#define AIM_CB_SPECIAL_FLAPVER 0x0005
877#define AIM_CB_SPECIAL_CONNINITDONE 0x0006
878#define AIM_CB_SPECIAL_IMAGETRANSFER 0x007
879#define AIM_CB_SPECIAL_UNKNOWN 0xffff
880#define AIM_CB_SPECIAL_DEFAULT AIM_CB_SPECIAL_UNKNOWN
881
882#endif /* __AIM_H__ */
Note: See TracBrowser for help on using the repository browser.