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