283
|
1 /*
|
|
2 * Main libfaim header. Must be included in client for prototypes/macros.
|
|
3 *
|
|
4 */
|
|
5
|
|
6 #ifndef __AIM_H__
|
|
7 #define __AIM_H__
|
|
8
|
|
9 #define FAIM_VERSION_MAJOR 0
|
|
10 #define FAIM_VERSION_MINOR 99
|
|
11 #define FAIM_VERSION_MINORMINOR 0
|
|
12
|
|
13 #include <faimconfig.h>
|
|
14 #include <aim_cbtypes.h>
|
|
15
|
|
16 #ifndef FAIM_USEPTHREADS
|
|
17 #error pthreads are currently required.
|
|
18 #endif
|
|
19
|
|
20 #include <stdio.h>
|
|
21 #include <string.h>
|
|
22 #include <fcntl.h>
|
|
23 #include <sys/types.h>
|
|
24 #include <stdlib.h>
|
|
25 #include <stdarg.h>
|
|
26 #include <errno.h>
|
|
27
|
|
28 #ifdef FAIM_USEPTHREADS
|
|
29 #include <pthread.h>
|
|
30 #define faim_mutex_t pthread_mutex_t
|
|
31 #define faim_mutex_init pthread_mutex_init
|
|
32 #define faim_mutex_lock pthread_mutex_lock
|
|
33 #define faim_mutex_unlock pthread_mutex_unlock
|
|
34 #endif
|
|
35
|
|
36 #ifdef _WIN32
|
|
37 #include <windows.h>
|
|
38 #include <time.h>
|
|
39 #include <io.h>
|
|
40 #else
|
|
41 #include <netdb.h>
|
|
42 #include <sys/socket.h>
|
|
43 #include <netinet/in.h>
|
|
44 #include <sys/time.h>
|
|
45 #include <unistd.h>
|
|
46 #endif
|
|
47
|
|
48 /* Portability stuff (DMP) */
|
|
49
|
|
50 #ifdef _WIN32
|
|
51 #define sleep Sleep
|
|
52 #define strlen(x) (int)strlen(x) /* win32 has a unsigned size_t */
|
|
53 #endif
|
|
54
|
|
55 #if defined(_WIN32) || (defined(mach) && defined(__APPLE__))
|
|
56 #define gethostbyname2(x,y) gethostbyname(x) /* revert to IPv4 */
|
|
57 #endif
|
|
58
|
|
59 /*
|
|
60 * Current Maximum Length for Screen Names (not including NULL)
|
|
61 */
|
|
62 #define MAXSNLEN 16
|
|
63
|
|
64 /*
|
|
65 * Current Maximum Length for Instant Messages
|
|
66 *
|
|
67 * This was found basically by experiment, but not wholly
|
|
68 * accurate experiment. It should not be regarded
|
|
69 * as completely correct. But its a decent approximation.
|
|
70 *
|
|
71 * Note that although we can send this much, its impossible
|
|
72 * for WinAIM clients (up through the latest (4.0.1957)) to
|
|
73 * send any more than 1kb. Amaze all your windows friends
|
|
74 * with uterrly oversized instant messages!
|
|
75 *
|
|
76 */
|
|
77 #define MAXMSGLEN 7988
|
|
78
|
|
79 /*
|
|
80 * Current Maximum Length for Chat Room Messages
|
|
81 *
|
|
82 * This is actually defined by the protocol to be
|
|
83 * dynamic, but I have yet to see due cause to
|
|
84 * define it dynamically here. Maybe later.
|
|
85 *
|
|
86 */
|
|
87 #define MAXCHATMSGLEN 512
|
|
88
|
|
89 /*
|
|
90 * Standard size of an AIM authorization cookie
|
|
91 */
|
|
92 #define AIM_COOKIELEN 0x100
|
|
93
|
|
94 #if debug > 0
|
|
95 #define faimdprintf(l, x...) {if (l >= debug) printf(x); }
|
|
96 #else
|
|
97 #define faimdprintf(l, x...)
|
|
98 #endif
|
|
99
|
|
100 /*
|
|
101 * Login info. Passes information from the Authorization
|
|
102 * stage of login to the service (BOS, etc) connection
|
|
103 * phase.
|
|
104 *
|
|
105 */
|
|
106 struct aim_login_struct {
|
|
107 char screen_name[MAXSNLEN+1];
|
|
108 char *BOSIP;
|
|
109 char cookie[AIM_COOKIELEN];
|
|
110 char *email;
|
|
111 u_short regstatus;
|
|
112 char *errorurl;
|
|
113 u_short errorcode;
|
|
114 };
|
|
115
|
|
116 /*
|
|
117 * Client info. Filled in by the client and passed
|
|
118 * in to aim_login(). The information ends up
|
|
119 * getting passed to OSCAR through the initial
|
|
120 * login command.
|
|
121 *
|
|
122 * XXX: Should this be per-session? -mid
|
|
123 *
|
|
124 */
|
|
125 struct client_info_s {
|
|
126 char clientstring[100]; /* arbitrary size */
|
|
127 int major;
|
|
128 int minor;
|
|
129 int build;
|
|
130 char country[3];
|
|
131 char lang[3];
|
|
132 };
|
|
133
|
|
134 #ifndef TRUE
|
|
135 #define TRUE 1
|
|
136 #define FALSE 0
|
|
137 #endif
|
|
138
|
|
139 /*
|
|
140 * These could be arbitrary, but its easier to use the actual AIM values
|
|
141 */
|
|
142 #define AIM_CONN_TYPE_AUTH 0x0007
|
|
143 #define AIM_CONN_TYPE_ADS 0x0005
|
|
144 #define AIM_CONN_TYPE_BOS 0x0002
|
|
145 #define AIM_CONN_TYPE_CHAT 0x000e
|
|
146 #define AIM_CONN_TYPE_CHATNAV 0x000d
|
|
147
|
|
148 /*
|
|
149 * Status values returned from aim_conn_new(). ORed together.
|
|
150 */
|
|
151 #define AIM_CONN_STATUS_READY 0x0001
|
|
152 #define AIM_CONN_STATUS_INTERNALERR 0x0002
|
|
153 #define AIM_CONN_STATUS_RESOLVERR 0x0080
|
|
154 #define AIM_CONN_STATUS_CONNERR 0x0040
|
|
155
|
|
156 struct aim_conn_t {
|
|
157 int fd;
|
|
158 int type;
|
|
159 int seqnum;
|
|
160 int status;
|
|
161 void *priv; /* misc data the client may want to store */
|
|
162 time_t lastactivity; /* time of last transmit */
|
|
163 int forcedlatency;
|
|
164 struct aim_rxcblist_t *handlerlist;
|
|
165 faim_mutex_t active; /* lock around read/writes */
|
|
166 faim_mutex_t seqnum_lock; /* lock around ->seqnum changes */
|
|
167 };
|
|
168
|
|
169 /* struct for incoming commands */
|
|
170 struct command_rx_struct {
|
|
171 /* byte 1 assumed to always be 0x2a */
|
|
172 char type; /* type code (byte 2) */
|
|
173 u_int seqnum; /* sequence number (bytes 3 and 4) */
|
|
174 u_int commandlen; /* total packet len - 6 (bytes 5 and 6) */
|
|
175 u_char *data; /* packet data (from 7 byte on) */
|
|
176 u_int lock; /* 0 = open, !0 = locked */
|
|
177 u_int handled; /* 0 = new, !0 = been handled */
|
|
178 u_int nofree; /* 0 = free data on purge, 1 = only unlink */
|
|
179 struct aim_conn_t *conn; /* the connection it came in on... */
|
|
180 struct command_rx_struct *next; /* ptr to next struct in list */
|
|
181 };
|
|
182
|
|
183 /* struct for outgoing commands */
|
|
184 struct command_tx_struct {
|
|
185 /* byte 1 assumed to be 0x2a */
|
|
186 char type; /* type/family code */
|
|
187 u_int seqnum; /* seqnum dynamically assigned on tx */
|
|
188 u_int commandlen; /* SNAC length */
|
|
189 u_char *data; /* packet data */
|
|
190 u_int lock; /* 0 = open, !0 = locked */
|
|
191 u_int sent; /* 0 = pending, !0 = has been sent */
|
|
192 struct aim_conn_t *conn;
|
|
193 struct command_tx_struct *next; /* ptr to next struct in list */
|
|
194 };
|
|
195
|
|
196
|
|
197 /*
|
|
198 * AIM Session: The main client-data interface.
|
|
199 *
|
|
200 */
|
|
201 struct aim_session_t {
|
|
202
|
|
203 /* ---- Client Accessible ------------------------ */
|
|
204 /*
|
|
205 * Login information. See definition above.
|
|
206 *
|
|
207 */
|
|
208 struct aim_login_struct logininfo;
|
|
209
|
|
210 /*
|
|
211 * Pointer to anything the client wants to
|
|
212 * explicitly associate with this session.
|
|
213 */
|
|
214 void *aux_data;
|
|
215
|
|
216
|
|
217 /* ---- Internal Use Only ------------------------ */
|
|
218 /*
|
|
219 * Connection information
|
|
220 */
|
|
221 struct aim_conn_t conns[AIM_CONN_MAX];
|
|
222
|
|
223 /*
|
|
224 * TX/RX queues
|
|
225 */
|
|
226 struct command_tx_struct *queue_outgoing;
|
|
227 struct command_rx_struct *queue_incoming;
|
|
228
|
|
229 /*
|
|
230 * Tx Enqueuing function
|
|
231 */
|
|
232 int (*tx_enqueue)(struct aim_session_t *, struct command_tx_struct *);
|
|
233
|
|
234 /*
|
|
235 * This is a dreadful solution to the what-room-are-we-joining
|
|
236 * problem. (There's no connection between the service
|
|
237 * request and the resulting redirect.)
|
|
238 */
|
|
239 char *pendingjoin;
|
|
240
|
|
241 /*
|
|
242 * Outstanding snac handling
|
|
243 *
|
|
244 * XXX: Should these be per-connection? -mid
|
|
245 **/
|
|
246 struct aim_snac_t *outstanding_snacs;
|
|
247 u_long snac_nextid;
|
|
248 };
|
|
249
|
|
250
|
|
251 /*
|
|
252 * AIM User Info, Standard Form.
|
|
253 */
|
|
254 struct aim_userinfo_s {
|
|
255 char sn[MAXSNLEN+1];
|
|
256 u_short warnlevel;
|
|
257 u_short idletime;
|
|
258 u_short class;
|
|
259 u_long membersince;
|
|
260 u_long onlinesince;
|
|
261 u_long sessionlen;
|
|
262 u_short capabilities;
|
|
263 };
|
|
264
|
|
265 #define AIM_CLASS_TRIAL 0x0001
|
|
266 #define AIM_CLASS_UNKNOWN2 0x0002
|
|
267 #define AIM_CLASS_AOL 0x0004
|
|
268 #define AIM_CLASS_UNKNOWN4 0x0008
|
|
269 #define AIM_CLASS_FREE 0x0010
|
|
270 #define AIM_CLASS_AWAY 0x0020
|
|
271 #define AIM_CLASS_UNKNOWN40 0x0040
|
|
272 #define AIM_CLASS_UNKNOWN80 0x0080
|
|
273
|
|
274 /*
|
|
275 * TLV handling
|
|
276 */
|
|
277
|
|
278 /* Generic TLV structure. */
|
|
279 struct aim_tlv_t {
|
|
280 u_short type;
|
|
281 u_short length;
|
|
282 u_char *value;
|
|
283 };
|
|
284
|
|
285 /* List of above. */
|
|
286 struct aim_tlvlist_t {
|
|
287 struct aim_tlv_t *tlv;
|
|
288 struct aim_tlvlist_t *next;
|
|
289 };
|
|
290
|
|
291 /* TLV-handling functions */
|
|
292 struct aim_tlvlist_t *aim_readtlvchain(u_char *buf, int maxlen);
|
|
293 void aim_freetlvchain(struct aim_tlvlist_t **list);
|
|
294 struct aim_tlv_t *aim_grabtlv(u_char *src);
|
|
295 struct aim_tlv_t *aim_grabtlvstr(u_char *src);
|
|
296 struct aim_tlv_t *aim_gettlv(struct aim_tlvlist_t *, u_short, int);
|
|
297 char *aim_gettlv_str(struct aim_tlvlist_t *, u_short, int);
|
|
298 int aim_puttlv (u_char *dest, struct aim_tlv_t *newtlv);
|
|
299 struct aim_tlv_t *aim_createtlv(void);
|
|
300 int aim_freetlv(struct aim_tlv_t **oldtlv);
|
|
301 int aim_puttlv_16(u_char *, u_short, u_short);
|
|
302 int aim_puttlv_32(u_char *, u_short, u_long);
|
|
303 int aim_puttlv_str(u_char *buf, u_short t, u_short l, u_char *v);
|
|
304 int aim_writetlvchain(u_char *buf, int buflen, struct aim_tlvlist_t **list);
|
|
305 int aim_addtlvtochain16(struct aim_tlvlist_t **list, unsigned short type, unsigned short val);
|
|
306 int aim_addtlvtochain32(struct aim_tlvlist_t **list, unsigned short type, unsigned long val);
|
|
307 int aim_addtlvtochain_str(struct aim_tlvlist_t **list, unsigned short type, char *str, int len);
|
|
308 int aim_counttlvchain(struct aim_tlvlist_t **list);
|
|
309
|
|
310 /*
|
|
311 * Get command from connections / Dispatch commands
|
|
312 * already in queue.
|
|
313 */
|
|
314 int aim_get_command(struct aim_session_t *, struct aim_conn_t *);
|
|
315 int aim_rxdispatch(struct aim_session_t *);
|
|
316
|
|
317 int aim_logoff(struct aim_session_t *);
|
|
318
|
|
319
|
|
320 typedef int (*rxcallback_t)(struct aim_session_t *, struct command_rx_struct *, ...);
|
|
321 int aim_register_callbacks(rxcallback_t *);
|
|
322
|
|
323 u_long aim_genericreq_n(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype);
|
|
324 u_long aim_genericreq_l(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype, u_long *);
|
|
325 u_long aim_genericreq_s(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype, u_short *);
|
|
326
|
|
327 /* aim_login.c */
|
|
328 int aim_sendconnack(struct aim_session_t *sess, struct aim_conn_t *conn);
|
|
329 int aim_request_login (struct aim_session_t *sess, struct aim_conn_t *conn, char *sn);
|
|
330 int aim_send_login (struct aim_session_t *, struct aim_conn_t *, char *, char *, struct client_info_s *);
|
|
331 int aim_encode_password(const char *, u_char *);
|
|
332 unsigned long aim_sendauthresp(struct aim_session_t *sess,
|
|
333 struct aim_conn_t *conn,
|
|
334 char *sn, char *bosip,
|
|
335 char *cookie, char *email,
|
|
336 int regstatus);
|
|
337 int aim_gencookie(unsigned char *buf);
|
|
338 int aim_sendserverready(struct aim_session_t *sess, struct aim_conn_t *conn);
|
|
339 unsigned long aim_sendredirect(struct aim_session_t *sess,
|
|
340 struct aim_conn_t *conn,
|
|
341 unsigned short servid,
|
|
342 char *ip,
|
|
343 char *cookie);
|
|
344 void aim_purge_rxqueue(struct aim_session_t *);
|
|
345
|
|
346
|
|
347 int aim_parse_unknown(struct aim_session_t *, struct command_rx_struct *command, ...);
|
|
348 int aim_parse_missed_im(struct aim_session_t *, struct command_rx_struct *, ...);
|
|
349 int aim_parse_last_bad(struct aim_session_t *, struct command_rx_struct *, ...);
|
|
350
|
|
351 struct command_tx_struct *aim_tx_new(int, struct aim_conn_t *, int);
|
|
352 int aim_tx_enqueue__queuebased(struct aim_session_t *, struct command_tx_struct *);
|
|
353 int aim_tx_enqueue__immediate(struct aim_session_t *, struct command_tx_struct *);
|
|
354 #define aim_tx_enqueue(x, y) ((*(x->tx_enqueue))(x, y))
|
|
355 int aim_tx_sendframe(struct command_tx_struct *cur);
|
|
356 u_int aim_get_next_txseqnum(struct aim_conn_t *);
|
|
357 int aim_tx_flushqueue(struct aim_session_t *);
|
|
358 int aim_tx_printqueue(struct aim_session_t *);
|
|
359 void aim_tx_purgequeue(struct aim_session_t *);
|
|
360
|
|
361 struct aim_rxcblist_t {
|
|
362 u_short family;
|
|
363 u_short type;
|
|
364 rxcallback_t handler;
|
|
365 u_short flags;
|
|
366 struct aim_rxcblist_t *next;
|
|
367 };
|
|
368
|
|
369 int aim_conn_setlatency(struct aim_conn_t *conn, int newval);
|
|
370
|
|
371 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);
|
|
372 rxcallback_t aim_callhandler(struct aim_conn_t *conn, u_short family, u_short type);
|
|
373 int aim_clearhandlers(struct aim_conn_t *conn);
|
|
374
|
|
375 /*
|
|
376 * Generic SNAC structure. Rarely if ever used.
|
|
377 */
|
|
378 struct aim_snac_t {
|
|
379 u_long id;
|
|
380 u_short family;
|
|
381 u_short type;
|
|
382 u_short flags;
|
|
383 void *data;
|
|
384 time_t issuetime;
|
|
385 struct aim_snac_t *next;
|
|
386 };
|
|
387 u_long aim_newsnac(struct aim_session_t *, struct aim_snac_t *newsnac);
|
|
388 struct aim_snac_t *aim_remsnac(struct aim_session_t *, u_long id);
|
|
389 int aim_cleansnacs(struct aim_session_t *, int maxage);
|
|
390 int aim_putsnac(u_char *, int, int, int, u_long);
|
|
391
|
|
392
|
|
393 void aim_connrst(struct aim_session_t *);
|
|
394 struct aim_conn_t *aim_conn_getnext(struct aim_session_t *);
|
|
395 void aim_conn_close(struct aim_conn_t *deadconn);
|
|
396 struct aim_conn_t *aim_getconn_type(struct aim_session_t *, int type);
|
|
397 struct aim_conn_t *aim_newconn(struct aim_session_t *, int type, char *dest);
|
|
398 int aim_conngetmaxfd(struct aim_session_t *);
|
|
399 struct aim_conn_t *aim_select(struct aim_session_t *, struct timeval *, int *);
|
|
400 int aim_conn_isready(struct aim_conn_t *);
|
|
401 int aim_conn_setstatus(struct aim_conn_t *, int);
|
|
402 void aim_session_init(struct aim_session_t *);
|
|
403
|
|
404 /* aim_misc.c */
|
|
405
|
|
406 #define AIM_VISIBILITYCHANGE_PERMITADD 0x05
|
|
407 #define AIM_VISIBILITYCHANGE_PERMITREMOVE 0x06
|
|
408 #define AIM_VISIBILITYCHANGE_DENYADD 0x07
|
|
409 #define AIM_VISIBILITYCHANGE_DENYREMOVE 0x08
|
|
410
|
|
411 u_long aim_bos_setidle(struct aim_session_t *, struct aim_conn_t *, u_long);
|
|
412 u_long aim_bos_changevisibility(struct aim_session_t *, struct aim_conn_t *, int, char *);
|
|
413 u_long aim_bos_setbuddylist(struct aim_session_t *, struct aim_conn_t *, char *);
|
|
414 u_long aim_bos_setprofile(struct aim_session_t *, struct aim_conn_t *, char *, char *, unsigned int);
|
|
415 u_long aim_bos_setgroupperm(struct aim_session_t *, struct aim_conn_t *, u_long);
|
|
416 u_long aim_bos_clientready(struct aim_session_t *, struct aim_conn_t *);
|
|
417 u_long aim_bos_reqrate(struct aim_session_t *, struct aim_conn_t *);
|
|
418 u_long aim_bos_ackrateresp(struct aim_session_t *, struct aim_conn_t *);
|
|
419 u_long aim_bos_setprivacyflags(struct aim_session_t *, struct aim_conn_t *, u_long);
|
|
420 u_long aim_bos_reqpersonalinfo(struct aim_session_t *, struct aim_conn_t *);
|
|
421 u_long aim_bos_reqservice(struct aim_session_t *, struct aim_conn_t *, u_short);
|
|
422 u_long aim_bos_reqrights(struct aim_session_t *, struct aim_conn_t *);
|
|
423 u_long aim_bos_reqbuddyrights(struct aim_session_t *, struct aim_conn_t *);
|
|
424 u_long aim_bos_reqlocaterights(struct aim_session_t *, struct aim_conn_t *);
|
|
425 u_long aim_bos_reqicbmparaminfo(struct aim_session_t *, struct aim_conn_t *);
|
|
426 u_long aim_setversions(struct aim_session_t *sess, struct aim_conn_t *conn);
|
|
427
|
|
428 /* aim_rxhandlers.c */
|
|
429 int aim_rxdispatch(struct aim_session_t *);
|
|
430 int aim_authparse(struct aim_session_t *, struct command_rx_struct *);
|
|
431 int aim_handleredirect_middle(struct aim_session_t *, struct command_rx_struct *, ...);
|
|
432 int aim_parse_unknown(struct aim_session_t *, struct command_rx_struct *, ...);
|
|
433 int aim_parse_last_bad(struct aim_session_t *, struct command_rx_struct *, ...);
|
|
434 int aim_parse_generalerrs(struct aim_session_t *, struct command_rx_struct *command, ...);
|
|
435 int aim_parsemotd_middle(struct aim_session_t *sess, struct command_rx_struct *command, ...);
|
|
436
|
|
437 /* aim_im.c */
|
|
438 #define AIM_IMFLAGS_AWAY 0x01 /* mark as an autoreply */
|
|
439 #define AIM_IMFLAGS_ACK 0x02 /* request a receipt notice */
|
|
440
|
|
441 u_long aim_send_im(struct aim_session_t *, struct aim_conn_t *, char *, u_int, char *);
|
|
442 int aim_parse_incoming_im_middle(struct aim_session_t *, struct command_rx_struct *);
|
|
443 u_long aim_seticbmparam(struct aim_session_t *, struct aim_conn_t *conn);
|
|
444 int aim_parse_msgerror_middle(struct aim_session_t *, struct command_rx_struct *);
|
|
445
|
|
446 /* aim_info.c */
|
|
447 #define AIM_CAPS_BUDDYICON 0x01
|
|
448 #define AIM_CAPS_VOICE 0x02
|
|
449 #define AIM_CAPS_IMIMAGE 0x04
|
|
450 #define AIM_CAPS_CHAT 0x08
|
|
451 #define AIM_CAPS_GETFILE 0x10
|
|
452 #define AIM_CAPS_SENDFILE 0x20
|
|
453 extern u_char aim_caps[6][16];
|
|
454
|
|
455 #define AIM_GETINFO_GENERALINFO 0x00001
|
|
456 #define AIM_GETINFO_AWAYMESSAGE 0x00003
|
|
457
|
|
458 u_long aim_getinfo(struct aim_session_t *, struct aim_conn_t *, const char *, unsigned short);
|
|
459 int aim_extractuserinfo(u_char *, struct aim_userinfo_s *);
|
|
460 int aim_parse_userinfo_middle(struct aim_session_t *, struct command_rx_struct *);
|
|
461 int aim_parse_oncoming_middle(struct aim_session_t *, struct command_rx_struct *);
|
|
462 int aim_parse_offgoing_middle(struct aim_session_t *, struct command_rx_struct *);
|
|
463 int aim_putuserinfo(u_char *buf, int buflen, struct aim_userinfo_s *info);
|
|
464 int aim_sendbuddyoncoming(struct aim_session_t *sess, struct aim_conn_t *conn, struct aim_userinfo_s *info);
|
|
465 int aim_sendbuddyoffgoing(struct aim_session_t *sess, struct aim_conn_t *conn, char *sn);
|
|
466
|
|
467
|
|
468 /* aim_auth.c */
|
|
469 int aim_auth_sendcookie(struct aim_session_t *, struct aim_conn_t *, u_char *);
|
|
470 u_long aim_auth_clientready(struct aim_session_t *, struct aim_conn_t *);
|
|
471 u_long aim_auth_changepasswd(struct aim_session_t *, struct aim_conn_t *, char *, char *);
|
|
472
|
|
473 /* aim_buddylist.c */
|
|
474 u_long aim_add_buddy(struct aim_session_t *, struct aim_conn_t *, char *);
|
|
475 u_long aim_remove_buddy(struct aim_session_t *, struct aim_conn_t *, char *);
|
|
476
|
|
477 /* aim_search.c */
|
|
478 u_long aim_usersearch_address(struct aim_session_t *, struct aim_conn_t *, char *);
|
|
479 /* u_long aim_usersearch_name(struct aim_session_t *, struct aim_conn_t *, char *); */
|
|
480
|
|
481
|
|
482 struct aim_chat_roominfo {
|
|
483 u_short exchange;
|
|
484 char *name;
|
|
485 u_short instance;
|
|
486 };
|
|
487 int aim_chat_readroominfo(u_char *buf, struct aim_chat_roominfo *outinfo);
|
|
488 int aim_chat_parse_infoupdate(struct aim_session_t *sess, struct command_rx_struct *command);
|
|
489 int aim_chat_parse_joined(struct aim_session_t *sess, struct command_rx_struct *command);
|
|
490 int aim_chat_parse_leave(struct aim_session_t *sess, struct command_rx_struct *command);
|
|
491 int aim_chat_parse_incoming(struct aim_session_t *sess, struct command_rx_struct *command);
|
|
492 u_long aim_chat_send_im(struct aim_session_t *sess, struct aim_conn_t *conn, char *msg);
|
|
493 u_long aim_chat_join(struct aim_session_t *sess, struct aim_conn_t *conn, u_short exchange, const char *roomname);
|
|
494 u_long aim_chat_clientready(struct aim_session_t *sess, struct aim_conn_t *conn);
|
|
495 int aim_chat_attachname(struct aim_conn_t *conn, char *roomname);
|
|
496 char *aim_chat_getname(struct aim_conn_t *conn);
|
|
497 struct aim_conn_t *aim_chat_getconn(struct aim_session_t *, char *name);
|
|
498
|
|
499 u_long aim_chatnav_reqrights(struct aim_session_t *sess, struct aim_conn_t *conn);
|
|
500 u_long aim_chatnav_clientready(struct aim_session_t *sess, struct aim_conn_t *conn);
|
|
501
|
|
502 u_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);
|
|
503
|
|
504 struct aim_chat_exchangeinfo {
|
|
505 u_short number;
|
|
506 char *name;
|
|
507 char *charset1;
|
|
508 char *lang1;
|
|
509 char *charset2;
|
|
510 char *lang2;
|
|
511 };
|
|
512 int aim_chatnav_parse_info(struct aim_session_t *sess, struct command_rx_struct *command);
|
|
513 u_long aim_chatnav_createroom(struct aim_session_t *sess, struct aim_conn_t *conn, char *name, u_short exchange);
|
|
514 int aim_chat_leaveroom(struct aim_session_t *sess, char *name);
|
|
515
|
|
516 /* aim_util.c */
|
|
517 #ifdef AIMUTIL_USEMACROS
|
|
518 /*
|
|
519 * These are really ugly. You'd think this was LISP. I wish it was.
|
|
520 */
|
|
521 #define aimutil_put8(buf, data) ((*(buf) = (u_char)(data)&0xff),1)
|
|
522 #define aimutil_get8(buf) ((*(buf))&0xff)
|
|
523 #define aimutil_put16(buf, data) ( \
|
|
524 (*(buf) = (u_char)((data)>>8)&0xff), \
|
|
525 (*((buf)+1) = (u_char)(data)&0xff), \
|
|
526 2)
|
|
527 #define aimutil_get16(buf) ((((*(buf))<<8)&0xff00) + ((*((buf)+1)) & 0xff))
|
|
528 #define aimutil_put32(buf, data) ( \
|
|
529 (*((buf)) = (u_char)((data)>>24)&0xff), \
|
|
530 (*((buf)+1) = (u_char)((data)>>16)&0xff), \
|
|
531 (*((buf)+2) = (u_char)((data)>>8)&0xff), \
|
|
532 (*((buf)+3) = (u_char)(data)&0xff), \
|
|
533 4)
|
|
534 #define aimutil_get32(buf) ((((*(buf))<<24)&0xff000000) + \
|
|
535 (((*((buf)+1))<<16)&0x00ff0000) + \
|
|
536 (((*((buf)+2))<< 8)&0x0000ff00) + \
|
|
537 (((*((buf)+3) )&0x000000ff)))
|
|
538 #else
|
|
539 #warning Not using aimutil macros. May have performance problems.
|
|
540 int aimutil_put8(u_char *, u_char);
|
|
541 u_char aimutil_get8(u_char *buf);
|
|
542 int aimutil_put16(u_char *, u_short);
|
|
543 u_short aimutil_get16(u_char *);
|
|
544 int aimutil_put32(u_char *, u_long);
|
|
545 u_long aimutil_get32(u_char *);
|
|
546 #endif
|
|
547
|
|
548 int aimutil_putstr(u_char *, const u_char *, int);
|
|
549 int aimutil_tokslen(char *toSearch, int index, char dl);
|
|
550 int aimutil_itemcnt(char *toSearch, char dl);
|
|
551 char *aimutil_itemidx(char *toSearch, int index, char dl);
|
|
552
|
|
553 int aim_snlen(const char *sn);
|
|
554 int aim_sncmp(const char *sn1, const char *sn2);
|
|
555
|
|
556 /* aim_meta.c */
|
|
557 char *aim_getbuilddate(void);
|
|
558 char *aim_getbuildtime(void);
|
|
559 char *aim_getbuildstring(void);
|
|
560
|
|
561 #endif /* __AIM_H__ */
|
|
562
|