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