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