Fri, 16 Mar 2001 14:29:54 +0000
[gaim-migrate @ 1603]
libfaim updates and a bug fix for bad password.
| 1535 | 1 | /* |
| 2 | * Main libfaim header. Must be included in client for prototypes/macros. | |
| 3 | * | |
| 4 | * "come on, i turned a chick lesbian; i think this is the hackish equivalent" | |
| 5 | * -- Josh Meyer | |
| 6 | * | |
| 7 | */ | |
| 8 | ||
| 9 | #ifndef __AIM_H__ | |
| 10 | #define __AIM_H__ | |
| 11 | ||
| 12 | #define FAIM_VERSION_MAJOR 0 | |
| 13 | #define FAIM_VERSION_MINOR 99 | |
| 14 | #define FAIM_VERSION_MINORMINOR 1 | |
| 15 | ||
| 16 | #include <faimconfig.h> | |
| 17 | #include <aim_cbtypes.h> | |
| 18 | ||
| 19 | #if !defined(FAIM_USEPTHREADS) && !defined(FAIM_USEFAKELOCKS) && !defined(FAIM_USENOPLOCKS) | |
| 20 | #error pthreads, fakelocks, or noplocks are currently required. | |
| 21 | #endif | |
| 22 | ||
| 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 | #include <time.h> | |
| 31 | ||
| 32 | #ifdef _WIN32 | |
| 33 | #include <windows.h> | |
| 34 | #include <io.h> | |
| 35 | #else | |
| 36 | #include <sys/time.h> | |
| 37 | #include <unistd.h> | |
| 38 | #include <netinet/in.h> | |
| 39 | #include <sys/socket.h> | |
| 40 | #endif | |
| 41 | ||
| 42 | #ifdef FAIM_USEPTHREADS | |
| 43 | #include <pthread.h> | |
| 44 | #define faim_mutex_t pthread_mutex_t | |
| 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) | |
| 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 | |
| 58 | #define faim_mutex_init(x) *x = 0 | |
| 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) | |
| 68 | #endif | |
| 69 | ||
| 70 | /* Portability stuff (DMP) */ | |
| 71 | ||
| 72 | #ifdef _WIN32 | |
|
1593
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
73 | #define sleep(x) Sleep((x)*1000) |
| 1535 | 74 | #define snprintf _snprintf /* I'm not sure whats wrong with Microsoft here */ |
| 75 | #define close(x) closesocket(x) /* no comment */ | |
| 76 | #endif | |
| 77 | ||
| 78 | #if defined(mach) && defined(__APPLE__) | |
| 79 | #define gethostbyname(x) gethostbyname2(x, AF_INET) | |
| 80 | #endif | |
| 81 | ||
| 82 | #if defined(_WIN32) || defined(STRICT_ANSI) | |
| 83 | #define faim_shortfunc | |
| 84 | #else | |
| 85 | #define faim_shortfunc inline | |
| 86 | #endif | |
| 87 | ||
| 88 | #if defined(_WIN32) && !defined(WIN32_STATIC) | |
| 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 | |
| 107 | #endif | |
| 108 | ||
| 109 | /* | |
| 110 | * Current Maximum Length for Screen Names (not including NULL) | |
| 111 | * | |
| 112 | * Currently only names up to 16 characters can be registered | |
| 113 | * however it is aparently legal for them to be larger. | |
| 114 | */ | |
| 115 | #define MAXSNLEN 32 | |
| 116 | ||
| 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 | |
| 127 | * with utterly oversized instant messages! | |
| 128 | * | |
| 129 | * XXX: the real limit is the total SNAC size at 8192. Fix this. | |
| 130 | * | |
| 131 | */ | |
| 132 | #define MAXMSGLEN 7987 | |
| 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 | ||
| 144 | /* | |
| 145 | * Standard size of an AIM authorization cookie | |
| 146 | */ | |
| 147 | #define AIM_COOKIELEN 0x100 | |
| 148 | ||
| 149 | #define AIM_MD5_STRING "AOL Instant Messenger (SM)" | |
| 150 | ||
| 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 | */ | |
| 160 | struct 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]; | |
| 167 | int major2; | |
| 168 | int minor2; | |
| 169 | long unknown; | |
| 170 | }; | |
| 171 | ||
| 172 | #ifndef TRUE | |
| 173 | #define TRUE 1 | |
| 174 | #define FALSE 0 | |
| 175 | #endif | |
| 176 | ||
| 177 | /* | |
| 178 | * These could be arbitrary, but its easier to use the actual AIM values | |
| 179 | */ | |
| 180 | #define AIM_CONN_TYPE_AUTH 0x0007 | |
| 181 | #define AIM_CONN_TYPE_ADS 0x0005 | |
| 182 | #define AIM_CONN_TYPE_BOS 0x0002 | |
| 183 | #define AIM_CONN_TYPE_CHAT 0x000e | |
| 184 | #define AIM_CONN_TYPE_CHATNAV 0x000d | |
| 185 | ||
| 186 | /* they start getting arbitrary in rendezvous stuff =) */ | |
| 187 | #define AIM_CONN_TYPE_RENDEZVOUS 0x0101 /* these do not speak OSCAR! */ | |
| 188 | #define AIM_CONN_TYPE_RENDEZVOUS_OUT 0x0102 /* socket waiting for accept() */ | |
| 189 | ||
| 190 | /* | |
| 191 | * Subtypes, we need these for OFT stuff. | |
| 192 | */ | |
| 193 | #define AIM_CONN_SUBTYPE_OFT_DIRECTIM 0x0001 | |
| 194 | #define AIM_CONN_SUBTYPE_OFT_GETFILE 0x0002 | |
| 195 | #define AIM_CONN_SUBTYPE_OFT_SENDFILE 0x0003 | |
| 196 | #define AIM_CONN_SUBTYPE_OFT_BUDDYICON 0x0004 | |
| 197 | #define AIM_CONN_SUBTYPE_OFT_VOICE 0x0005 | |
| 198 | ||
| 199 | /* | |
| 200 | * Status values returned from aim_conn_new(). ORed together. | |
| 201 | */ | |
| 202 | #define AIM_CONN_STATUS_READY 0x0001 | |
| 203 | #define AIM_CONN_STATUS_INTERNALERR 0x0002 | |
| 204 | #define AIM_CONN_STATUS_RESOLVERR 0x0040 | |
| 205 | #define AIM_CONN_STATUS_CONNERR 0x0080 | |
| 206 | #define AIM_CONN_STATUS_INPROGRESS 0x0100 | |
| 207 | ||
| 208 | #define AIM_FRAMETYPE_OSCAR 0x0000 | |
| 209 | #define AIM_FRAMETYPE_OFT 0x0001 | |
| 210 | ||
| 211 | struct aim_conn_t { | |
| 212 | int fd; | |
| 213 | unsigned short type; | |
| 214 | unsigned short subtype; | |
| 215 | int seqnum; | |
| 216 | int status; | |
| 217 | void *priv; /* misc data the client may want to store */ | |
| 218 | time_t lastactivity; /* time of last transmit */ | |
| 219 | int forcedlatency; | |
| 220 | struct aim_rxcblist_t *handlerlist; | |
| 221 | faim_mutex_t active; /* lock around read/writes */ | |
| 222 | faim_mutex_t seqnum_lock; /* lock around ->seqnum changes */ | |
| 223 | struct aim_conn_t *next; | |
| 224 | }; | |
| 225 | ||
| 226 | /* struct for incoming commands */ | |
| 227 | struct command_rx_struct { | |
| 228 | unsigned char hdrtype; /* defines which piece of the union to use */ | |
| 229 | union { | |
| 230 | struct { | |
| 231 | char type; | |
| 232 | unsigned short seqnum; | |
| 233 | } oscar; | |
| 234 | struct { | |
| 235 | unsigned short type; | |
| 236 | unsigned char magic[4]; /* ODC2 OFT2 */ | |
| 237 | unsigned short hdr2len; | |
| 238 | unsigned char *hdr2; /* rest of bloated header */ | |
| 239 | } oft; | |
| 240 | } hdr; | |
| 241 | unsigned short commandlen; /* total payload length */ | |
| 242 | unsigned char *data; /* packet data (from 7 byte on) */ | |
| 243 | unsigned char lock; /* 0 = open, !0 = locked */ | |
| 244 | unsigned char handled; /* 0 = new, !0 = been handled */ | |
| 245 | unsigned char nofree; /* 0 = free data on purge, 1 = only unlink */ | |
| 246 | struct aim_conn_t *conn; /* the connection it came in on... */ | |
| 247 | struct command_rx_struct *next; /* ptr to next struct in list */ | |
| 248 | }; | |
| 249 | ||
| 250 | /* struct for outgoing commands */ | |
| 251 | struct command_tx_struct { | |
| 252 | unsigned char hdrtype; /* defines which piece of the union to use */ | |
| 253 | union { | |
| 254 | struct { | |
| 255 | unsigned char type; | |
| 256 | unsigned short seqnum; | |
| 257 | } oscar; | |
| 258 | struct { | |
| 259 | unsigned short type; | |
| 260 | unsigned char magic[4]; /* ODC2 OFT2 */ | |
| 261 | unsigned short hdr2len; | |
| 262 | unsigned char *hdr2; | |
| 263 | } oft; | |
| 264 | } hdr; | |
| 265 | u_int commandlen; | |
| 266 | u_char *data; | |
| 267 | u_int lock; /* 0 = open, !0 = locked */ | |
| 268 | u_int sent; /* 0 = pending, !0 = has been sent */ | |
| 269 | struct aim_conn_t *conn; | |
| 270 | struct command_tx_struct *next; /* ptr to next struct in list */ | |
| 271 | }; | |
| 272 | ||
| 273 | /* | |
| 274 | * AIM Session: The main client-data interface. | |
| 275 | * | |
| 276 | */ | |
| 277 | struct aim_session_t { | |
| 278 | ||
| 279 | /* ---- Client Accessible ------------------------ */ | |
| 280 | /* | |
| 281 | * Our screen name. | |
| 282 | * | |
| 283 | */ | |
| 284 | char sn[MAXSNLEN+1]; | |
| 285 | ||
| 286 | /* | |
| 287 | * Pointer to anything the client wants to | |
| 288 | * explicitly associate with this session. | |
| 289 | * | |
| 290 | * This is for use in the callbacks mainly. In any | |
| 291 | * callback, you can access this with sess->aux_data. | |
| 292 | * | |
| 293 | */ | |
| 294 | void *aux_data; | |
| 295 | ||
| 296 | /* ---- Internal Use Only ------------------------ */ | |
| 297 | /* | |
| 298 | * Connection information | |
| 299 | */ | |
| 300 | struct aim_conn_t *connlist; | |
| 301 | faim_mutex_t connlistlock; | |
| 302 | ||
| 303 | /* | |
| 304 | * TX/RX queues | |
| 305 | */ | |
| 306 | struct command_tx_struct *queue_outgoing; | |
| 307 | struct command_rx_struct *queue_incoming; | |
| 308 | ||
| 309 | /* | |
| 310 | * Tx Enqueuing function | |
| 311 | */ | |
| 312 | int (*tx_enqueue)(struct aim_session_t *, struct command_tx_struct *); | |
| 313 | ||
| 314 | /* | |
| 315 | * This is a dreadful solution to the what-room-are-we-joining | |
| 316 | * problem. (There's no connection between the service | |
| 317 | * request and the resulting redirect.) | |
| 318 | */ | |
| 319 | char *pendingjoin; | |
| 320 | unsigned short pendingjoinexchange; | |
| 321 | ||
| 322 | /* | |
| 323 | * Outstanding snac handling | |
| 324 | * | |
| 325 | * XXX: Should these be per-connection? -mid | |
| 326 | */ | |
| 327 | struct aim_snac_t *snac_hash[FAIM_SNAC_HASH_SIZE]; | |
| 328 | faim_mutex_t snac_hash_locks[FAIM_SNAC_HASH_SIZE]; | |
| 329 | unsigned long snac_nextid; | |
| 330 | ||
| 331 | struct { | |
| 332 | char server[128]; | |
| 333 | char username[128]; | |
| 334 | char password[128]; | |
| 335 | } socksproxy; | |
| 336 | ||
| 337 | unsigned long flags; | |
| 338 | ||
| 339 | int debug; | |
| 340 | void (*debugcb)(struct aim_session_t *sess, int level, const char *format, va_list va); /* same as faim_debugging_callback_t */ | |
| 341 | ||
| 342 | struct aim_msgcookie_t *msgcookies; | |
| 343 | }; | |
| 344 | ||
| 345 | /* Values for sess->flags */ | |
| 346 | #define AIM_SESS_FLAGS_SNACLOGIN 0x00000001 | |
| 347 | #define AIM_SESS_FLAGS_XORLOGIN 0x00000002 | |
| 348 | #define AIM_SESS_FLAGS_NONBLOCKCONNECT 0x00000004 | |
| 349 | ||
| 350 | /* | |
| 351 | * AIM User Info, Standard Form. | |
| 352 | */ | |
| 353 | struct aim_userinfo_s { | |
| 354 | char sn[MAXSNLEN+1]; | |
| 355 | u_short warnlevel; | |
| 356 | u_short idletime; | |
| 357 | u_short flags; | |
| 358 | u_long membersince; | |
| 359 | u_long onlinesince; | |
| 360 | u_long sessionlen; | |
| 361 | u_short capabilities; | |
| 362 | struct { | |
| 363 | unsigned short status; | |
| 364 | unsigned int ipaddr; | |
| 365 | char crap[0x25]; /* until we figure it out... */ | |
| 366 | } icqinfo; | |
| 367 | }; | |
| 368 | ||
| 369 | #define AIM_FLAG_UNCONFIRMED 0x0001 /* "damned transients" */ | |
| 370 | #define AIM_FLAG_ADMINISTRATOR 0x0002 | |
| 371 | #define AIM_FLAG_AOL 0x0004 | |
| 372 | #define AIM_FLAG_OSCAR_PAY 0x0008 | |
| 373 | #define AIM_FLAG_FREE 0x0010 | |
| 374 | #define AIM_FLAG_AWAY 0x0020 | |
| 375 | #define AIM_FLAG_UNKNOWN40 0x0040 | |
| 376 | #define AIM_FLAG_UNKNOWN80 0x0080 | |
| 377 | ||
| 378 | #define AIM_FLAG_ALLUSERS 0x001f | |
| 379 | ||
| 380 | ||
| 381 | #if defined(FAIM_INTERNAL) || defined(FAIM_NEED_TLV) | |
| 382 | /* | |
| 383 | * TLV handling | |
| 384 | */ | |
| 385 | ||
| 386 | /* Generic TLV structure. */ | |
| 387 | struct aim_tlv_t { | |
| 388 | u_short type; | |
| 389 | u_short length; | |
| 390 | u_char *value; | |
| 391 | }; | |
| 392 | ||
| 393 | /* List of above. */ | |
| 394 | struct aim_tlvlist_t { | |
| 395 | struct aim_tlv_t *tlv; | |
| 396 | struct aim_tlvlist_t *next; | |
| 397 | }; | |
| 398 | ||
| 399 | /* TLV-handling functions */ | |
|
1593
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
400 | faim_internal struct aim_tlvlist_t *aim_readtlvchain(const unsigned char *buf, const int maxlen); |
| 1535 | 401 | faim_internal void aim_freetlvchain(struct aim_tlvlist_t **list); |
|
1593
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
402 | faim_internal struct aim_tlv_t *aim_grabtlv(const unsigned char *src); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
403 | faim_internal struct aim_tlv_t *aim_grabtlvstr(const unsigned char *src); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
404 | faim_internal struct aim_tlv_t *aim_gettlv(struct aim_tlvlist_t *, const unsigned short, const int); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
405 | faim_internal char *aim_gettlv_str(struct aim_tlvlist_t *, const unsigned short, const int); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
406 | faim_internal unsigned char aim_gettlv8(struct aim_tlvlist_t *list, const unsigned short type, const int num); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
407 | faim_internal unsigned short aim_gettlv16(struct aim_tlvlist_t *list, const unsigned short type, const int num); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
408 | faim_internal unsigned long aim_gettlv32(struct aim_tlvlist_t *list, const unsigned short type, const int num); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
409 | faim_internal int aim_puttlv (unsigned char *dest, struct aim_tlv_t *newtlv); |
| 1535 | 410 | faim_internal struct aim_tlv_t *aim_createtlv(void); |
| 411 | faim_internal int aim_freetlv(struct aim_tlv_t **oldtlv); | |
|
1593
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
412 | faim_internal int aim_puttlv_8(unsigned char *buf, const unsigned short t, const unsigned char v); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
413 | faim_internal int aim_puttlv_16(unsigned char *, const unsigned short, const unsigned short); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
414 | faim_internal int aim_puttlv_32(unsigned char *, const unsigned short, const unsigned long); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
415 | faim_internal int aim_puttlv_str(u_char *buf, const unsigned short t, const int l, const char *v); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
416 | faim_internal int aim_writetlvchain(unsigned char *buf, const int buflen, struct aim_tlvlist_t **list); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
417 | faim_internal int aim_addtlvtochain16(struct aim_tlvlist_t **list, const unsigned short type, const unsigned short val); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
418 | faim_internal int aim_addtlvtochain32(struct aim_tlvlist_t **list, const unsigned short type, const unsigned long val); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
419 | faim_internal int aim_addtlvtochain_str(struct aim_tlvlist_t **list, const unsigned short type, const char *str, const int len); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
420 | faim_internal int aim_addtlvtochain_caps(struct aim_tlvlist_t **list, const unsigned short type, const unsigned short caps); |
|
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
421 | faim_internal int aim_addtlvtochain_noval(struct aim_tlvlist_t **list, const unsigned short type); |
| 1535 | 422 | faim_internal int aim_counttlvchain(struct aim_tlvlist_t **list); |
| 423 | #endif /* FAIM_INTERNAL */ | |
| 424 | ||
| 425 | /* | |
| 426 | * Get command from connections / Dispatch commands | |
| 427 | * already in queue. | |
| 428 | */ | |
| 429 | faim_export int aim_get_command(struct aim_session_t *, struct aim_conn_t *); | |
| 430 | int aim_rxdispatch(struct aim_session_t *); | |
| 431 | ||
| 432 | faim_export unsigned long aim_debugconn_sendconnect(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 433 | ||
| 434 | faim_export int aim_logoff(struct aim_session_t *); | |
| 435 | ||
| 436 | #ifndef FAIM_INTERNAL | |
| 437 | /* the library should never call aim_conn_kill */ | |
| 438 | faim_export void aim_conn_kill(struct aim_session_t *sess, struct aim_conn_t **deadconn); | |
| 439 | #endif /* ndef FAIM_INTERNAL */ | |
| 440 | ||
| 441 | typedef int (*rxcallback_t)(struct aim_session_t *, struct command_rx_struct *, ...); | |
| 442 | ||
| 443 | /* aim_login.c */ | |
| 444 | faim_export int aim_sendconnack(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 445 | faim_export int aim_request_login (struct aim_session_t *sess, struct aim_conn_t *conn, char *sn); | |
| 446 | faim_export int aim_send_login (struct aim_session_t *, struct aim_conn_t *, char *, char *, struct client_info_s *, char *key); | |
| 447 | faim_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); | |
| 448 | faim_export int aim_gencookie(unsigned char *buf); | |
| 449 | faim_export int aim_sendserverready(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 450 | faim_export unsigned long aim_sendredirect(struct aim_session_t *sess, struct aim_conn_t *conn, unsigned short servid, char *ip, char *cookie); | |
| 451 | faim_export void aim_purge_rxqueue(struct aim_session_t *); | |
| 452 | ||
| 453 | #define AIM_TX_QUEUED 0 /* default */ | |
| 454 | #define AIM_TX_IMMEDIATE 1 | |
| 455 | #define AIM_TX_USER 2 | |
| 456 | faim_export int aim_tx_setenqueue(struct aim_session_t *sess, int what, int (*func)(struct aim_session_t *, struct command_tx_struct *)); | |
| 457 | ||
| 458 | faim_export int aim_tx_flushqueue(struct aim_session_t *); | |
| 459 | faim_export void aim_tx_purgequeue(struct aim_session_t *); | |
| 460 | ||
| 461 | struct aim_rxcblist_t { | |
| 462 | u_short family; | |
| 463 | u_short type; | |
| 464 | rxcallback_t handler; | |
| 465 | u_short flags; | |
| 466 | struct aim_rxcblist_t *next; | |
| 467 | }; | |
| 468 | ||
| 469 | faim_export int aim_conn_setlatency(struct aim_conn_t *conn, int newval); | |
| 470 | ||
| 471 | faim_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); | |
| 472 | faim_export int aim_clearhandlers(struct aim_conn_t *conn); | |
| 473 | ||
| 474 | faim_export void aim_conn_close(struct aim_conn_t *deadconn); | |
| 475 | faim_export struct aim_conn_t *aim_newconn(struct aim_session_t *, int type, char *dest); | |
| 476 | faim_export int aim_conngetmaxfd(struct aim_session_t *); | |
| 477 | faim_export struct aim_conn_t *aim_select(struct aim_session_t *, struct timeval *, int *); | |
| 478 | faim_export int aim_conn_isready(struct aim_conn_t *); | |
| 479 | faim_export int aim_conn_setstatus(struct aim_conn_t *, int); | |
| 480 | faim_export int aim_conn_completeconnect(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 481 | faim_export int aim_conn_isconnecting(struct aim_conn_t *conn); | |
| 482 | ||
| 483 | typedef void (*faim_debugging_callback_t)(struct aim_session_t *sess, int level, const char *format, va_list va); | |
| 484 | faim_export int aim_setdebuggingcb(struct aim_session_t *sess, faim_debugging_callback_t); | |
| 485 | faim_export void aim_session_init(struct aim_session_t *, unsigned long flags, int debuglevel); | |
| 486 | faim_export void aim_setupproxy(struct aim_session_t *sess, char *server, char *username, char *password); | |
| 487 | faim_export struct aim_conn_t *aim_getconn_type(struct aim_session_t *, int type); | |
| 488 | ||
| 489 | /* aim_misc.c */ | |
| 490 | ||
| 491 | #define AIM_VISIBILITYCHANGE_PERMITADD 0x05 | |
| 492 | #define AIM_VISIBILITYCHANGE_PERMITREMOVE 0x06 | |
| 493 | #define AIM_VISIBILITYCHANGE_DENYADD 0x07 | |
| 494 | #define AIM_VISIBILITYCHANGE_DENYREMOVE 0x08 | |
| 495 | ||
| 496 | #define AIM_PRIVFLAGS_ALLOWIDLE 0x01 | |
| 497 | #define AIM_PRIVFLAGS_ALLOWMEMBERSINCE 0x02 | |
| 498 | ||
| 499 | #define AIM_WARN_ANON 0x01 | |
| 500 | ||
| 501 | faim_export int aim_send_warning(struct aim_session_t *sess, struct aim_conn_t *conn, char *destsn, int anon); | |
| 502 | faim_export unsigned long aim_bos_nop(struct aim_session_t *, struct aim_conn_t *); | |
| 503 | faim_export unsigned long aim_flap_nop(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 504 | faim_export unsigned long aim_bos_setidle(struct aim_session_t *, struct aim_conn_t *, u_long); | |
| 505 | faim_export unsigned long aim_bos_changevisibility(struct aim_session_t *, struct aim_conn_t *, int, char *); | |
| 506 | faim_export unsigned long aim_bos_setbuddylist(struct aim_session_t *, struct aim_conn_t *, char *); | |
| 507 | faim_export unsigned long aim_bos_setprofile(struct aim_session_t *, struct aim_conn_t *, char *, char *, unsigned short); | |
| 508 | faim_export unsigned long aim_bos_setgroupperm(struct aim_session_t *, struct aim_conn_t *, u_long); | |
| 509 | faim_export unsigned long aim_bos_clientready(struct aim_session_t *, struct aim_conn_t *); | |
| 510 | faim_export unsigned long aim_bos_reqrate(struct aim_session_t *, struct aim_conn_t *); | |
| 511 | faim_export unsigned long aim_bos_ackrateresp(struct aim_session_t *, struct aim_conn_t *); | |
| 512 | faim_export unsigned long aim_bos_setprivacyflags(struct aim_session_t *, struct aim_conn_t *, u_long); | |
| 513 | faim_export unsigned long aim_bos_reqpersonalinfo(struct aim_session_t *, struct aim_conn_t *); | |
| 514 | faim_export unsigned long aim_bos_reqservice(struct aim_session_t *, struct aim_conn_t *, u_short); | |
| 515 | faim_export unsigned long aim_bos_reqrights(struct aim_session_t *, struct aim_conn_t *); | |
| 516 | faim_export unsigned long aim_bos_reqbuddyrights(struct aim_session_t *, struct aim_conn_t *); | |
| 517 | faim_export unsigned long aim_bos_reqlocaterights(struct aim_session_t *, struct aim_conn_t *); | |
| 518 | faim_export unsigned long aim_bos_reqicbmparaminfo(struct aim_session_t *, struct aim_conn_t *); | |
| 519 | faim_export unsigned long aim_addicbmparam(struct aim_session_t *sess,struct aim_conn_t *conn); | |
| 520 | faim_export unsigned long aim_setversions(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 521 | faim_export unsigned long aim_auth_setversions(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 522 | faim_export unsigned long aim_auth_reqconfirm(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 523 | faim_export unsigned long aim_auth_getinfo(struct aim_session_t *sess, struct aim_conn_t *conn, unsigned short info); | |
| 524 | faim_export unsigned long aim_auth_setemail(struct aim_session_t *sess, struct aim_conn_t *conn, char *newemail); | |
| 525 | faim_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); | |
| 526 | faim_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); | |
| 527 | faim_export unsigned long aim_icq_setstatus(struct aim_session_t *sess, struct aim_conn_t *conn, unsigned long status); | |
| 528 | ||
| 529 | faim_export struct aim_fileheader_t *aim_getlisting(struct aim_session_t *sess, FILE *); | |
| 530 | ||
| 531 | /* aim_rxhandlers.c */ | |
| 532 | faim_export int aim_rxdispatch(struct aim_session_t *); | |
| 533 | ||
| 534 | #define AIM_CLIENTTYPE_UNKNOWN 0x0000 | |
| 535 | #define AIM_CLIENTTYPE_MC 0x0001 | |
| 536 | #define AIM_CLIENTTYPE_WINAIM 0x0002 | |
| 537 | #define AIM_CLIENTTYPE_WINAIM41 0x0003 | |
| 538 | #define AIM_CLIENTTYPE_AOL_TOC 0x0004 | |
| 539 | faim_export unsigned short aim_fingerprintclient(unsigned char *msghdr, int len); | |
| 540 | ||
| 541 | #define AIM_RATE_CODE_CHANGE 0x0001 | |
| 542 | #define AIM_RATE_CODE_WARNING 0x0002 | |
| 543 | #define AIM_RATE_CODE_LIMIT 0x0003 | |
| 544 | #define AIM_RATE_CODE_CLEARLIMIT 0x0004 | |
| 545 | faim_export unsigned long aim_ads_clientready(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 546 | faim_export unsigned long aim_ads_requestads(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 547 | ||
| 548 | /* aim_im.c */ | |
| 549 | struct aim_directim_priv { | |
| 550 | unsigned char cookie[8]; | |
| 551 | char sn[MAXSNLEN+1]; | |
| 552 | char ip[30]; | |
| 553 | }; | |
| 554 | ||
| 555 | struct aim_fileheader_t { | |
| 556 | #if 0 | |
| 557 | char magic[4]; /* 0 */ | |
| 558 | short hdrlen; /* 4 */ | |
| 559 | short hdrtype; /* 6 */ | |
| 560 | #endif | |
| 561 | char bcookie[8]; /* 8 */ | |
| 562 | short encrypt; /* 16 */ | |
| 563 | short compress; /* 18 */ | |
| 564 | short totfiles; /* 20 */ | |
| 565 | short filesleft; /* 22 */ | |
| 566 | short totparts; /* 24 */ | |
| 567 | short partsleft; /* 26 */ | |
| 568 | long totsize; /* 28 */ | |
| 569 | long size; /* 32 */ | |
| 570 | long modtime; /* 36 */ | |
| 571 | long checksum; /* 40 */ | |
| 572 | long rfrcsum; /* 44 */ | |
| 573 | long rfsize; /* 48 */ | |
| 574 | long cretime; /* 52 */ | |
| 575 | long rfcsum; /* 56 */ | |
| 576 | long nrecvd; /* 60 */ | |
| 577 | long recvcsum; /* 64 */ | |
| 578 | char idstring[32]; /* 68 */ | |
| 579 | char flags; /* 100 */ | |
| 580 | char lnameoffset; /* 101 */ | |
| 581 | char lsizeoffset; /* 102 */ | |
| 582 | char dummy[69]; /* 103 */ | |
| 583 | char macfileinfo[16]; /* 172 */ | |
| 584 | short nencode; /* 188 */ | |
| 585 | short nlanguage; /* 190 */ | |
| 586 | char name[64]; /* 192 */ | |
| 587 | /* 256 */ | |
| 588 | }; | |
| 589 | ||
| 590 | struct aim_filetransfer_priv { | |
| 591 | char sn[MAXSNLEN]; | |
| 592 | char cookie[8]; | |
| 593 | char ip[30]; | |
| 594 | int state; | |
| 595 | struct aim_fileheader_t fh; | |
| 596 | }; | |
| 597 | ||
| 598 | ||
| 599 | #define AIM_IMFLAGS_AWAY 0x01 /* mark as an autoreply */ | |
| 600 | #define AIM_IMFLAGS_ACK 0x02 /* request a receipt notice */ | |
| 601 | ||
| 602 | faim_export unsigned long aim_send_im(struct aim_session_t *, struct aim_conn_t *, char *, u_int, char *); | |
| 603 | faim_export int aim_send_im_direct(struct aim_session_t *, struct aim_conn_t *, char *); | |
| 604 | faim_export struct aim_conn_t * aim_directim_initiate(struct aim_session_t *, struct aim_conn_t *, struct aim_directim_priv *, char *destsn); | |
| 605 | faim_export struct aim_conn_t *aim_directim_connect(struct aim_session_t *, struct aim_conn_t *, struct aim_directim_priv *); | |
| 606 | faim_export unsigned long aim_seticbmparam(struct aim_session_t *, struct aim_conn_t *conn); | |
| 607 | ||
| 608 | faim_export struct aim_conn_t *aim_getfile_initiate(struct aim_session_t *sess, struct aim_conn_t *conn, char *destsn); | |
| 609 | faim_export int aim_oft_getfile_request(struct aim_session_t *sess, struct aim_conn_t *conn, const unsigned char *name, const int size); | |
| 610 | faim_export int aim_oft_getfile_ack(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 611 | faim_export int aim_oft_getfile_end(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 612 | ||
| 613 | /* aim_info.c */ | |
| 614 | #define AIM_CAPS_BUDDYICON 0x01 | |
| 615 | #define AIM_CAPS_VOICE 0x02 | |
| 616 | #define AIM_CAPS_IMIMAGE 0x04 | |
| 617 | #define AIM_CAPS_CHAT 0x08 | |
| 618 | #define AIM_CAPS_GETFILE 0x10 | |
| 619 | #define AIM_CAPS_SENDFILE 0x20 | |
| 620 | #define AIM_CAPS_GAMES 0x40 | |
| 621 | #define AIM_CAPS_SAVESTOCKS 0x80 | |
| 622 | ||
| 623 | #define AIM_GETINFO_GENERALINFO 0x00001 | |
| 624 | #define AIM_GETINFO_AWAYMESSAGE 0x00003 | |
| 625 | ||
| 626 | struct aim_msgcookie_t { | |
| 627 | unsigned char cookie[8]; | |
| 628 | int type; | |
| 629 | void *data; | |
| 630 | time_t addtime; | |
| 631 | struct aim_msgcookie_t *next; | |
| 632 | }; | |
| 633 | ||
| 634 | struct aim_invite_priv { | |
| 635 | char *sn; | |
| 636 | char *roomname; | |
| 637 | int exchange; | |
| 638 | int instance; | |
| 639 | }; | |
| 640 | ||
| 641 | #define AIM_COOKIETYPE_UNKNOWN 0x00 | |
| 642 | #define AIM_COOKIETYPE_ICBM 0x01 | |
| 643 | #define AIM_COOKIETYPE_ADS 0x02 | |
| 644 | #define AIM_COOKIETYPE_BOS 0x03 | |
| 645 | #define AIM_COOKIETYPE_IM 0x04 | |
| 646 | #define AIM_COOKIETYPE_CHAT 0x05 | |
| 647 | #define AIM_COOKIETYPE_CHATNAV 0x06 | |
| 648 | #define AIM_COOKIETYPE_INVITE 0x07 | |
| 649 | /* we'll move OFT up a bit to give breathing room. not like it really | |
| 650 | * matters. */ | |
| 651 | #define AIM_COOKIETYPE_OFTIM 0x10 | |
| 652 | #define AIM_COOKIETYPE_OFTGET 0x11 | |
| 653 | #define AIM_COOKIETYPE_OFTSEND 0x12 | |
| 654 | #define AIM_COOKIETYPE_OFTVOICE 0x13 | |
| 655 | #define AIM_COOKIETYPE_OFTIMAGE 0x14 | |
| 656 | #define AIM_COOKIETYPE_OFTICON 0x15 | |
| 657 | ||
| 658 | faim_export int aim_handlerendconnect(struct aim_session_t *sess, struct aim_conn_t *cur); | |
| 659 | ||
| 660 | #define AIM_TRANSFER_DENY_NOTSUPPORTED 0x0000 | |
| 661 | #define AIM_TRANSFER_DENY_DECLINE 0x0001 | |
| 662 | #define AIM_TRANSFER_DENY_NOTACCEPTING 0x0002 | |
| 663 | faim_export unsigned long aim_denytransfer(struct aim_session_t *sess, struct aim_conn_t *conn, char *sender, char *cookie, unsigned short code); | |
| 664 | faim_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); | |
| 665 | ||
| 666 | faim_export unsigned long aim_getinfo(struct aim_session_t *, struct aim_conn_t *, const char *, unsigned short); | |
| 667 | faim_export int aim_sendbuddyoncoming(struct aim_session_t *sess, struct aim_conn_t *conn, struct aim_userinfo_s *info); | |
| 668 | faim_export int aim_sendbuddyoffgoing(struct aim_session_t *sess, struct aim_conn_t *conn, char *sn); | |
| 669 | ||
| 670 | ||
| 671 | /* aim_auth.c */ | |
| 672 | faim_export int aim_auth_sendcookie(struct aim_session_t *, struct aim_conn_t *, u_char *); | |
| 673 | faim_export u_long aim_auth_clientready(struct aim_session_t *, struct aim_conn_t *); | |
| 674 | faim_export unsigned long aim_auth_changepasswd(struct aim_session_t *, struct aim_conn_t *, char *, char *); | |
| 675 | ||
| 676 | /* aim_buddylist.c */ | |
| 677 | faim_export unsigned long aim_add_buddy(struct aim_session_t *, struct aim_conn_t *, char *); | |
| 678 | faim_export unsigned long aim_remove_buddy(struct aim_session_t *, struct aim_conn_t *, char *); | |
| 679 | ||
| 680 | /* aim_search.c */ | |
| 681 | faim_export u_long aim_usersearch_address(struct aim_session_t *, struct aim_conn_t *, char *); | |
| 682 | ||
| 683 | struct aim_chat_roominfo { | |
| 684 | u_short exchange; | |
| 685 | char *name; | |
| 686 | u_short instance; | |
| 687 | }; | |
| 688 | ||
| 689 | struct aim_chat_exchangeinfo { | |
| 690 | u_short number; | |
| 691 | char *name; | |
| 692 | char *charset1; | |
| 693 | char *lang1; | |
| 694 | char *charset2; | |
| 695 | char *lang2; | |
| 696 | }; | |
| 697 | ||
| 698 | faim_export unsigned long aim_chat_send_im(struct aim_session_t *sess, struct aim_conn_t *conn, char *msg); | |
| 699 | faim_export unsigned long aim_chat_join(struct aim_session_t *sess, struct aim_conn_t *conn, u_short exchange, const char *roomname); | |
| 700 | faim_export unsigned long aim_chat_clientready(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 701 | faim_export int aim_chat_attachname(struct aim_conn_t *conn, char *roomname); | |
| 702 | faim_export char *aim_chat_getname(struct aim_conn_t *conn); | |
| 703 | faim_export struct aim_conn_t *aim_chat_getconn(struct aim_session_t *, char *name); | |
| 704 | ||
| 705 | faim_export unsigned long aim_chatnav_reqrights(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 706 | faim_export unsigned long aim_chatnav_clientready(struct aim_session_t *sess, struct aim_conn_t *conn); | |
| 707 | ||
| 708 | faim_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); | |
| 709 | ||
| 710 | faim_export u_long aim_chatnav_createroom(struct aim_session_t *sess, struct aim_conn_t *conn, char *name, u_short exchange); | |
| 711 | faim_export int aim_chat_leaveroom(struct aim_session_t *sess, char *name); | |
| 712 | ||
| 713 | /* aim_util.c */ | |
| 714 | #ifdef AIMUTIL_USEMACROS | |
| 715 | /* | |
| 716 | * These are really ugly. You'd think this was LISP. I wish it was. | |
| 717 | */ | |
| 718 | #define aimutil_put8(buf, data) ((*(buf) = (u_char)(data)&0xff),1) | |
| 719 | #define aimutil_get8(buf) ((*(buf))&0xff) | |
| 720 | #define aimutil_put16(buf, data) ( \ | |
| 721 | (*(buf) = (u_char)((data)>>8)&0xff), \ | |
| 722 | (*((buf)+1) = (u_char)(data)&0xff), \ | |
| 723 | 2) | |
| 724 | #define aimutil_get16(buf) ((((*(buf))<<8)&0xff00) + ((*((buf)+1)) & 0xff)) | |
| 725 | #define aimutil_put32(buf, data) ( \ | |
| 726 | (*((buf)) = (u_char)((data)>>24)&0xff), \ | |
| 727 | (*((buf)+1) = (u_char)((data)>>16)&0xff), \ | |
| 728 | (*((buf)+2) = (u_char)((data)>>8)&0xff), \ | |
| 729 | (*((buf)+3) = (u_char)(data)&0xff), \ | |
| 730 | 4) | |
| 731 | #define aimutil_get32(buf) ((((*(buf))<<24)&0xff000000) + \ | |
| 732 | (((*((buf)+1))<<16)&0x00ff0000) + \ | |
| 733 | (((*((buf)+2))<< 8)&0x0000ff00) + \ | |
| 734 | (((*((buf)+3) )&0x000000ff))) | |
| 735 | #else | |
| 736 | #warning Not using aimutil macros. May have performance problems. | |
| 737 | int aimutil_put8(u_char *, u_char); | |
| 738 | u_char aimutil_get8(u_char *buf); | |
| 739 | int aimutil_put16(u_char *, u_short); | |
| 740 | u_short aimutil_get16(u_char *); | |
| 741 | int aimutil_put32(u_char *, u_long); | |
| 742 | u_long aimutil_get32(u_char *); | |
| 743 | #endif | |
| 744 | ||
| 745 | faim_export int aimutil_putstr(u_char *, const char *, int); | |
| 746 | faim_export int aimutil_tokslen(char *toSearch, int index, char dl); | |
| 747 | faim_export int aimutil_itemcnt(char *toSearch, char dl); | |
| 748 | faim_export char *aimutil_itemidx(char *toSearch, int index, char dl); | |
| 749 | ||
| 750 | faim_export int aim_snlen(const char *sn); | |
| 751 | faim_export int aim_sncmp(const char *sn1, const char *sn2); | |
| 752 | ||
| 753 | /* for libc's that dont have it */ | |
| 754 | faim_export char *aim_strsep(char **pp, const char *delim); | |
| 755 | ||
| 756 | /* aim_meta.c */ | |
| 757 | faim_export char *aim_getbuilddate(void); | |
| 758 | faim_export char *aim_getbuildtime(void); | |
| 759 | faim_export char *aim_getbuildstring(void); | |
| 760 | ||
|
1593
737a163f339c
[gaim-migrate @ 1603]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
1535
diff
changeset
|
761 | #include <aim_internal.h> |
| 1535 | 762 | |
| 763 | #endif /* __AIM_H__ */ | |
| 764 |