]> andersk Git - libfaim.git/blame - src/misc.c
- Mon Jun 4 12:45:18 PDT 2001
[libfaim.git] / src / misc.c
CommitLineData
9de3ca7e 1
2/*
3 * aim_misc.c
4 *
5 * TODO: Seperate a lot of this into an aim_bos.c.
6 *
7 * Other things...
8 *
9 * - Idle setting
10 *
11 *
12 */
13
37ee990e 14#define FAIM_INTERNAL
dd60ff8b 15#include <aim.h>
9de3ca7e 16
17/*
18 * aim_bos_setidle()
19 *
20 * Should set your current idle time in seconds. Idealy, OSCAR should
21 * do this for us. But, it doesn't. The client must call this to set idle
22 * time.
23 *
24 */
5ac21963 25faim_export unsigned long aim_bos_setidle(struct aim_session_t *sess,
26 struct aim_conn_t *conn,
27 u_long idletime)
9de3ca7e 28{
a25832e6 29 return aim_genericreq_l(sess, conn, 0x0001, 0x0011, &idletime);
9de3ca7e 30}
31
32
33/*
34 * aim_bos_changevisibility(conn, changtype, namelist)
35 *
36 * Changes your visibility depending on changetype:
37 *
38 * AIM_VISIBILITYCHANGE_PERMITADD: Lets provided list of names see you
39 * AIM_VISIBILITYCHANGE_PERMIDREMOVE: Removes listed names from permit list
40 * AIM_VISIBILITYCHANGE_DENYADD: Hides you from provided list of names
41 * AIM_VISIBILITYCHANGE_DENYREMOVE: Lets list see you again
42 *
43 * list should be a list of
44 * screen names in the form "Screen Name One&ScreenNameTwo&" etc.
45 *
46 * Equivelents to options in WinAIM:
47 * - Allow all users to contact me: Send an AIM_VISIBILITYCHANGE_DENYADD
48 * with only your name on it.
49 * - Allow only users on my Buddy List: Send an
50 * AIM_VISIBILITYCHANGE_PERMITADD with the list the same as your
51 * buddy list
52 * - Allow only the uesrs below: Send an AIM_VISIBILITYCHANGE_PERMITADD
53 * with everyone listed that you want to see you.
54 * - Block all users: Send an AIM_VISIBILITYCHANGE_PERMITADD with only
55 * yourself in the list
56 * - Block the users below: Send an AIM_VISIBILITYCHANGE_DENYADD with
57 * the list of users to be blocked
58 *
59 *
60 */
5ac21963 61faim_export unsigned long aim_bos_changevisibility(struct aim_session_t *sess,
62 struct aim_conn_t *conn,
63 int changetype,
64 char *denylist)
9de3ca7e 65{
5b79dc93 66 struct command_tx_struct *newpacket;
67 int packlen = 0;
9de3ca7e 68 u_short subtype;
69
70 char *localcpy = NULL;
71 char *tmpptr = NULL;
72 int i,j;
73 int listcount;
74
75 if (!denylist)
76 return 0;
77
9de3ca7e 78 localcpy = (char *) malloc(strlen(denylist)+1);
79 memcpy(localcpy, denylist, strlen(denylist)+1);
80
81 listcount = aimutil_itemcnt(localcpy, '&');
5b79dc93 82 packlen = aimutil_tokslen(localcpy, 99, '&') + listcount + 9;
9de3ca7e 83
646c6b52 84 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, packlen)))
5b79dc93 85 return -1;
9de3ca7e 86
5b79dc93 87 newpacket->lock = 1;
9de3ca7e 88
89 switch(changetype)
90 {
91 case AIM_VISIBILITYCHANGE_PERMITADD: subtype = 0x05; break;
92 case AIM_VISIBILITYCHANGE_PERMITREMOVE: subtype = 0x06; break;
93 case AIM_VISIBILITYCHANGE_DENYADD: subtype = 0x07; break;
94 case AIM_VISIBILITYCHANGE_DENYREMOVE: subtype = 0x08; break;
95 default:
5b79dc93 96 free(newpacket->data);
97 free(newpacket);
9de3ca7e 98 return 0;
99 }
100
101 /* We actually DO NOT send a SNAC ID with this one! */
5b79dc93 102 aim_putsnac(newpacket->data, 0x0009, subtype, 0x00, 0);
9de3ca7e 103
104 j = 10; /* the next byte */
105
106 for (i=0; (i < (listcount - 1)) && (i < 99); i++)
107 {
108 tmpptr = aimutil_itemidx(localcpy, i, '&');
109
5b79dc93 110 newpacket->data[j] = strlen(tmpptr);
111 memcpy(&(newpacket->data[j+1]), tmpptr, strlen(tmpptr));
9de3ca7e 112 j += strlen(tmpptr)+1;
113 free(tmpptr);
114 }
115 free(localcpy);
116
5b79dc93 117 newpacket->lock = 0;
9de3ca7e 118
5b79dc93 119 aim_tx_enqueue(sess, newpacket);
9de3ca7e 120
a25832e6 121 return (sess->snac_nextid); /* dont increment */
9de3ca7e 122
123}
124
125
126
127/*
128 * aim_bos_setbuddylist(buddylist)
129 *
130 * This just builds the "set buddy list" command then queues it.
131 *
132 * buddy_list = "Screen Name One&ScreenNameTwo&";
133 *
5b79dc93 134 * TODO: Clean this up.
135 *
136 * XXX: I can't stress the TODO enough.
9de3ca7e 137 *
138 */
5ac21963 139faim_export unsigned long aim_bos_setbuddylist(struct aim_session_t *sess,
140 struct aim_conn_t *conn,
141 char *buddy_list)
9de3ca7e 142{
143 int i, j;
144
5b79dc93 145 struct command_tx_struct *newpacket;
9de3ca7e 146
c78446b5 147 int len = 0;
9de3ca7e 148
149 char *localcpy = NULL;
150 char *tmpptr = NULL;
151
c78446b5 152 len = 10; /* 10B SNAC headers */
9de3ca7e 153
c78446b5 154 if (!buddy_list || !(localcpy = (char *) malloc(strlen(buddy_list)+1)))
5b79dc93 155 return -1;
c78446b5 156 strncpy(localcpy, buddy_list, strlen(buddy_list)+1);
9de3ca7e 157
158 i = 0;
159 tmpptr = strtok(localcpy, "&");
c78446b5 160 while ((tmpptr != NULL) && (i < 150)) {
646c6b52 161 faimdprintf(sess, 2, "---adding %d: %s (%d)\n", i, tmpptr, strlen(tmpptr));
c78446b5 162 len += 1+strlen(tmpptr);
163 i++;
164 tmpptr = strtok(NULL, "&");
165 }
646c6b52 166 faimdprintf(sess, 2, "*** send buddy list len: %d (%x)\n", len, len);
9de3ca7e 167
646c6b52 168 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, len)))
5b79dc93 169 return -1;
9de3ca7e 170
5b79dc93 171 newpacket->lock = 1;
172
c78446b5 173 aim_putsnac(newpacket->data, 0x0003, 0x0004, 0x0000, 0);
9de3ca7e 174
175 j = 10; /* the next byte */
176
c78446b5 177 strncpy(localcpy, buddy_list, strlen(buddy_list)+1);
9de3ca7e 178 i = 0;
c78446b5 179 tmpptr = strtok(localcpy, "&");
180 while ((tmpptr != NULL) & (i < 150)) {
646c6b52 181 faimdprintf(sess, 2, "---adding %d: %s (%d)\n", i, tmpptr, strlen(tmpptr));
c78446b5 182 newpacket->data[j] = strlen(tmpptr);
183 memcpy(&(newpacket->data[j+1]), tmpptr, strlen(tmpptr));
184 j += 1+strlen(tmpptr);
185 i++;
186 tmpptr = strtok(NULL, "&");
187 }
9de3ca7e 188
5b79dc93 189 newpacket->lock = 0;
9de3ca7e 190
5b79dc93 191 aim_tx_enqueue(sess, newpacket);
9de3ca7e 192
c78446b5 193 free(localcpy);
194
195 return (sess->snac_nextid);
9de3ca7e 196}
197
198/*
199 * aim_bos_setprofile(profile)
200 *
201 * Gives BOS your profile.
202 *
26af6789 203 *
9de3ca7e 204 */
5ac21963 205faim_export unsigned long aim_bos_setprofile(struct aim_session_t *sess,
206 struct aim_conn_t *conn,
207 char *profile,
208 char *awaymsg,
209 unsigned short caps)
9de3ca7e 210{
5b79dc93 211 struct command_tx_struct *newpacket;
b69540e3 212 int i = 0, tmp, caplen;
0c20631f 213
646c6b52 214 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 1152+strlen(profile)+1+(awaymsg?strlen(awaymsg):0))))
5b79dc93 215 return -1;
9de3ca7e 216
5b79dc93 217 i += aim_putsnac(newpacket->data, 0x0002, 0x004, 0x0000, sess->snac_nextid);
e80a0fa9 218 i += aim_puttlv_str(newpacket->data+i, 0x0001, strlen("text/aolrtf; charset=\"us-ascii\""), "text/x-aolrtf; charset=\"us-ascii\"");
5b79dc93 219 i += aim_puttlv_str(newpacket->data+i, 0x0002, strlen(profile), profile);
26af6789 220 /* why do we send this twice? */
e80a0fa9 221 i += aim_puttlv_str(newpacket->data+i, 0x0003, strlen("text/aolrtf; charset=\"us-ascii\""), "text/x-aolrtf; charset=\"us-ascii\"");
9de3ca7e 222
0c20631f 223 /* Away message -- we send this no matter what, even if its blank */
224 if (awaymsg)
5b79dc93 225 i += aim_puttlv_str(newpacket->data+i, 0x0004, strlen(awaymsg), awaymsg);
0c20631f 226 else
5b79dc93 227 i += aim_puttlv_str(newpacket->data+i, 0x0004, 0x0000, NULL);
26af6789 228
229 /* Capability information. */
b69540e3 230
231 tmp = (i += aimutil_put16(newpacket->data+i, 0x0005));
232 i += aimutil_put16(newpacket->data+i, 0x0000); /* rewritten later */
233 i += (caplen = aim_putcap(newpacket->data+i, 512, caps));
234 aimutil_put16(newpacket->data+tmp, caplen); /* rewrite TLV size */
235
5b79dc93 236 newpacket->commandlen = i;
237 aim_tx_enqueue(sess, newpacket);
9de3ca7e 238
a25832e6 239 return (sess->snac_nextid++);
9de3ca7e 240}
241
9de3ca7e 242/*
243 * aim_bos_clientready()
244 *
245 * Send Client Ready.
246 *
9de3ca7e 247 */
5ac21963 248faim_export unsigned long aim_bos_clientready(struct aim_session_t *sess,
249 struct aim_conn_t *conn)
9de3ca7e 250{
64c78745 251 struct aim_tool_version tools[] = {
d6c9fcf0 252 {0x0001, 0x0003, AIM_TOOL_WIN32, 0x0686},
253 {0x0002, 0x0001, AIM_TOOL_WIN32, 0x0001},
254 {0x0003, 0x0001, AIM_TOOL_WIN32, 0x0001},
255 {0x0004, 0x0001, AIM_TOOL_WIN32, 0x0001},
256 {0x0006, 0x0001, AIM_TOOL_WIN32, 0x0001},
257 {0x0008, 0x0001, AIM_TOOL_WIN32, 0x0001},
258 {0x0009, 0x0001, AIM_TOOL_WIN32, 0x0001},
259 {0x000a, 0x0001, AIM_TOOL_WIN32, 0x0001},
260 {0x000b, 0x0001, AIM_TOOL_WIN32, 0x0001}
9de3ca7e 261 };
d6c9fcf0 262 int i,j;
5b79dc93 263 struct command_tx_struct *newpacket;
d6c9fcf0 264 int toolcount = sizeof(tools)/sizeof(struct aim_tool_version);
265
646c6b52 266 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 1152)))
5b79dc93 267 return -1;
268
269 newpacket->lock = 1;
270
d6c9fcf0 271 i = aim_putsnac(newpacket->data, 0x0001, 0x0002, 0x0000, sess->snac_nextid);
272 aim_cachesnac(sess, 0x0001, 0x0002, 0x0000, NULL, 0);
273
274 for (j = 0; j < toolcount; j++) {
275 i += aimutil_put16(newpacket->data+i, tools[j].group);
276 i += aimutil_put16(newpacket->data+i, tools[j].version);
277 i += aimutil_put16(newpacket->data+i, tools[j].tool);
278 i += aimutil_put16(newpacket->data+i, tools[j].toolversion);
279 }
280
281 newpacket->commandlen = i;
282 newpacket->lock = 0;
9de3ca7e 283
5b79dc93 284 aim_tx_enqueue(sess, newpacket);
9de3ca7e 285
d6c9fcf0 286 return sess->snac_nextid;
9de3ca7e 287}
288
289/*
9de3ca7e 290 * Request Rate Information.
291 *
9de3ca7e 292 */
5ac21963 293faim_export unsigned long aim_bos_reqrate(struct aim_session_t *sess,
294 struct aim_conn_t *conn)
9de3ca7e 295{
a25832e6 296 return aim_genericreq_n(sess, conn, 0x0001, 0x0006);
9de3ca7e 297}
298
299/*
9de3ca7e 300 * Rate Information Response Acknowledge.
301 *
302 */
5ac21963 303faim_export unsigned long aim_bos_ackrateresp(struct aim_session_t *sess,
304 struct aim_conn_t *conn)
9de3ca7e 305{
5b79dc93 306 struct command_tx_struct *newpacket;
c78446b5 307 int packlen = 20, i=0;
9de3ca7e 308
646c6b52 309 if(!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, packlen)))
c78446b5 310 return (sess->snac_nextid);
5b79dc93 311
312 newpacket->lock = 1;
9de3ca7e 313
c78446b5 314 i = aim_putsnac(newpacket->data, 0x0001, 0x0008, 0x0000, 0);
5b79dc93 315 i += aimutil_put16(newpacket->data+i, 0x0001);
316 i += aimutil_put16(newpacket->data+i, 0x0002);
317 i += aimutil_put16(newpacket->data+i, 0x0003);
318 i += aimutil_put16(newpacket->data+i, 0x0004);
c78446b5 319 i += aimutil_put16(newpacket->data+i, 0x0005);
5925849b 320
321 newpacket->commandlen = i;
322 newpacket->lock = 0;
323
5b79dc93 324 aim_tx_enqueue(sess, newpacket);
9de3ca7e 325
c78446b5 326 return (sess->snac_nextid);
9de3ca7e 327}
328
329/*
330 * aim_bos_setprivacyflags()
331 *
332 * Sets privacy flags. Normally 0x03.
333 *
334 * Bit 1: Allows other AIM users to see how long you've been idle.
98c88242 335 * Bit 2: Allows other AIM users to see how long you've been a member.
9de3ca7e 336 *
337 */
5ac21963 338faim_export unsigned long aim_bos_setprivacyflags(struct aim_session_t *sess,
339 struct aim_conn_t *conn,
340 u_long flags)
9de3ca7e 341{
a25832e6 342 return aim_genericreq_l(sess, conn, 0x0001, 0x0014, &flags);
9de3ca7e 343}
344
345/*
346 * aim_bos_reqpersonalinfo()
347 *
348 * Requests the current user's information. Can't go generic on this one
349 * because aparently it uses SNAC flags.
350 *
351 */
5ac21963 352faim_export unsigned long aim_bos_reqpersonalinfo(struct aim_session_t *sess,
353 struct aim_conn_t *conn)
9de3ca7e 354{
c78446b5 355 return aim_genericreq_n(sess, conn, 0x0001, 0x000e);
9de3ca7e 356}
357
5ac21963 358faim_export unsigned long aim_setversions(struct aim_session_t *sess,
359 struct aim_conn_t *conn)
01b59e1e 360{
5b79dc93 361 struct command_tx_struct *newpacket;
0c20631f 362 int i;
01b59e1e 363
e80a0fa9 364 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 10 + (4*16))))
5b79dc93 365 return -1;
366
367 newpacket->lock = 1;
01b59e1e 368
5b79dc93 369 i = aim_putsnac(newpacket->data, 0x0001, 0x0017, 0x0000, sess->snac_nextid);
ee49b735 370 aim_cachesnac(sess, 0x0001, 0x0017, 0x0000, NULL, 0);
01b59e1e 371
5b79dc93 372 i += aimutil_put16(newpacket->data+i, 0x0001);
373 i += aimutil_put16(newpacket->data+i, 0x0003);
26af6789 374
5b79dc93 375 i += aimutil_put16(newpacket->data+i, 0x0002);
376 i += aimutil_put16(newpacket->data+i, 0x0001);
26af6789 377
5b79dc93 378 i += aimutil_put16(newpacket->data+i, 0x0003);
379 i += aimutil_put16(newpacket->data+i, 0x0001);
26af6789 380
5b79dc93 381 i += aimutil_put16(newpacket->data+i, 0x0004);
382 i += aimutil_put16(newpacket->data+i, 0x0001);
26af6789 383
5b79dc93 384 i += aimutil_put16(newpacket->data+i, 0x0006);
385 i += aimutil_put16(newpacket->data+i, 0x0001);
26af6789 386
5b79dc93 387 i += aimutil_put16(newpacket->data+i, 0x0008);
388 i += aimutil_put16(newpacket->data+i, 0x0001);
26af6789 389
5b79dc93 390 i += aimutil_put16(newpacket->data+i, 0x0009);
391 i += aimutil_put16(newpacket->data+i, 0x0001);
26af6789 392
5b79dc93 393 i += aimutil_put16(newpacket->data+i, 0x000a);
394 i += aimutil_put16(newpacket->data+i, 0x0001);
26af6789 395
5b79dc93 396 i += aimutil_put16(newpacket->data+i, 0x000b);
e80a0fa9 397 i += aimutil_put16(newpacket->data+i, 0x0002);
26af6789 398
ee49b735 399 i += aimutil_put16(newpacket->data+i, 0x000c);
5b79dc93 400 i += aimutil_put16(newpacket->data+i, 0x0001);
01b59e1e 401
e80a0fa9 402 i += aimutil_put16(newpacket->data+i, 0x0013);
403 i += aimutil_put16(newpacket->data+i, 0x0001);
404
405 i += aimutil_put16(newpacket->data+i, 0x0015);
406 i += aimutil_put16(newpacket->data+i, 0x0001);
407
5925849b 408 newpacket->commandlen = i;
5b79dc93 409 newpacket->lock = 0;
410 aim_tx_enqueue(sess, newpacket);
01b59e1e 411
ee49b735 412 return sess->snac_nextid;
01b59e1e 413}
414
415
9de3ca7e 416/*
417 * aim_bos_reqservice(serviceid)
418 *
419 * Service request.
420 *
421 */
5ac21963 422faim_export unsigned long aim_bos_reqservice(struct aim_session_t *sess,
a25832e6 423 struct aim_conn_t *conn,
424 u_short serviceid)
9de3ca7e 425{
a25832e6 426 return aim_genericreq_s(sess, conn, 0x0001, 0x0004, &serviceid);
9de3ca7e 427}
428
f0a7908e 429/*
430 * aim_bos_nop()
431 *
432 * No-op. WinAIM sends these every 4min or so to keep
98c88242 433 * the connection alive. Its not real necessary.
f0a7908e 434 *
435 */
5ac21963 436faim_export unsigned long aim_bos_nop(struct aim_session_t *sess,
437 struct aim_conn_t *conn)
f0a7908e 438{
439 return aim_genericreq_n(sess, conn, 0x0001, 0x0016);
440}
441
44d6f2dc 442/*
443 * aim_flap_nop()
444 *
445 * No-op. WinAIM 4.x sends these _every minute_ to keep
446 * the connection alive.
447 */
448faim_export unsigned long aim_flap_nop(struct aim_session_t *sess,
449 struct aim_conn_t *conn)
450{
451 struct command_tx_struct *newpacket;
452
646c6b52 453 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0005, 0)))
44d6f2dc 454 return sess->snac_nextid;
455
456 newpacket->lock = 1;
457 newpacket->commandlen = 0;
458 newpacket->lock = 0;
459
460 aim_tx_enqueue(sess, newpacket);
461
462 return (sess->snac_nextid);
463}
464
9de3ca7e 465/*
466 * aim_bos_reqrights()
467 *
468 * Request BOS rights.
469 *
470 */
5ac21963 471faim_export unsigned long aim_bos_reqrights(struct aim_session_t *sess,
472 struct aim_conn_t *conn)
9de3ca7e 473{
a25832e6 474 return aim_genericreq_n(sess, conn, 0x0009, 0x0002);
9de3ca7e 475}
476
477/*
478 * aim_bos_reqbuddyrights()
479 *
480 * Request Buddy List rights.
481 *
482 */
5ac21963 483faim_export unsigned long aim_bos_reqbuddyrights(struct aim_session_t *sess,
484 struct aim_conn_t *conn)
9de3ca7e 485{
a25832e6 486 return aim_genericreq_n(sess, conn, 0x0003, 0x0002);
9de3ca7e 487}
488
98c88242 489/*
490 * aim_send_warning(struct aim_session_t *sess,
491 * struct aim_conn_t *conn, char *destsn, int anon)
492 * send a warning to destsn.
493 * anon is anonymous or not;
494 * AIM_WARN_ANON anonymous
495 *
496 * returns -1 on error (couldn't alloc packet), next snacid on success.
497 *
498 */
5ac21963 499faim_export int aim_send_warning(struct aim_session_t *sess, struct aim_conn_t *conn, char *destsn, int anon)
98c88242 500{
501 struct command_tx_struct *newpacket;
502 int curbyte;
503
646c6b52 504 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, strlen(destsn)+13)))
98c88242 505 return -1;
506
507 newpacket->lock = 1;
508
509 curbyte = 0;
510 curbyte += aim_putsnac(newpacket->data+curbyte,
511 0x0004, 0x0008, 0x0000, sess->snac_nextid);
512
513 curbyte += aimutil_put16(newpacket->data+curbyte, (anon & AIM_WARN_ANON)?1:0);
514
515 curbyte += aimutil_put8(newpacket->data+curbyte, strlen(destsn));
516
517 curbyte += aimutil_putstr(newpacket->data+curbyte, destsn, strlen(destsn));
518
519 newpacket->commandlen = curbyte;
520 newpacket->lock = 0;
521
522 aim_tx_enqueue(sess, newpacket);
523
524 return (sess->snac_nextid++);
525}
526
e5012450 527/*
528 * aim_debugconn_sendconnect()
529 *
530 * For aimdebugd. If you don't know what it is, you don't want to.
531 */
5ac21963 532faim_export unsigned long aim_debugconn_sendconnect(struct aim_session_t *sess,
533 struct aim_conn_t *conn)
e5012450 534{
535 return aim_genericreq_n(sess, conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_DEBUGCONN_CONNECT);
536}
537
9de3ca7e 538/*
539 * Generic routine for sending commands.
540 *
541 *
542 * I know I can do this in a smarter way...but I'm not thinking straight
543 * right now...
544 *
545 * I had one big function that handled all three cases, but then it broke
546 * and I split it up into three. But then I fixed it. I just never went
547 * back to the single. I don't see any advantage to doing it either way.
548 *
549 */
5ac21963 550faim_internal unsigned long aim_genericreq_n(struct aim_session_t *sess,
551 struct aim_conn_t *conn,
552 u_short family, u_short subtype)
9de3ca7e 553{
5b79dc93 554 struct command_tx_struct *newpacket;
9de3ca7e 555
646c6b52 556 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 10)))
5b79dc93 557 return 0;
9de3ca7e 558
5b79dc93 559 newpacket->lock = 1;
9de3ca7e 560
f6686b7e 561 aim_putsnac(newpacket->data, family, subtype, 0x0000, 0x00000000);
ee49b735 562
5b79dc93 563 aim_tx_enqueue(sess, newpacket);
f6686b7e 564
ee49b735 565 return sess->snac_nextid;
9de3ca7e 566}
567
568/*
569 *
570 *
571 */
5ac21963 572faim_internal unsigned long aim_genericreq_l(struct aim_session_t *sess,
573 struct aim_conn_t *conn,
574 u_short family, u_short subtype,
575 u_long *longdata)
9de3ca7e 576{
5b79dc93 577 struct command_tx_struct *newpacket;
9de3ca7e 578 u_long newlong;
579
580 /* If we don't have data, there's no reason to use this function */
581 if (!longdata)
a25832e6 582 return aim_genericreq_n(sess, conn, family, subtype);
9de3ca7e 583
646c6b52 584 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 10+sizeof(u_long))))
5b79dc93 585 return -1;
9de3ca7e 586
5b79dc93 587 newpacket->lock = 1;
9de3ca7e 588
f6686b7e 589 aim_putsnac(newpacket->data, family, subtype, 0x0000, 0x00000000);
9de3ca7e 590
591 /* copy in data */
592 newlong = htonl(*longdata);
5b79dc93 593 memcpy(&(newpacket->data[10]), &newlong, sizeof(u_long));
9de3ca7e 594
5b79dc93 595 aim_tx_enqueue(sess, newpacket);
f6686b7e 596
ee49b735 597 return sess->snac_nextid;
9de3ca7e 598}
599
5ac21963 600faim_internal unsigned long aim_genericreq_s(struct aim_session_t *sess,
601 struct aim_conn_t *conn,
602 u_short family, u_short subtype,
603 u_short *shortdata)
9de3ca7e 604{
5b79dc93 605 struct command_tx_struct *newpacket;
9de3ca7e 606 u_short newshort;
607
608 /* If we don't have data, there's no reason to use this function */
609 if (!shortdata)
a25832e6 610 return aim_genericreq_n(sess, conn, family, subtype);
9de3ca7e 611
646c6b52 612 if (!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 10+sizeof(u_short))))
5b79dc93 613 return -1;
9de3ca7e 614
5b79dc93 615 newpacket->lock = 1;
9de3ca7e 616
f6686b7e 617 aim_putsnac(newpacket->data, family, subtype, 0x0000, 0x00000000);
9de3ca7e 618
619 /* copy in data */
620 newshort = htons(*shortdata);
5b79dc93 621 memcpy(&(newpacket->data[10]), &newshort, sizeof(u_short));
9de3ca7e 622
5b79dc93 623 aim_tx_enqueue(sess, newpacket);
f6686b7e 624
ee49b735 625 return sess->snac_nextid;
9de3ca7e 626}
627
628/*
629 * aim_bos_reqlocaterights()
630 *
631 * Request Location services rights.
632 *
633 */
5ac21963 634faim_export unsigned long aim_bos_reqlocaterights(struct aim_session_t *sess,
635 struct aim_conn_t *conn)
9de3ca7e 636{
a25832e6 637 return aim_genericreq_n(sess, conn, 0x0002, 0x0002);
9de3ca7e 638}
639
640/*
e88ba395 641* aim_bos_reqicbmparaminfo()
9de3ca7e 642 *
643 * Request ICBM parameter information.
644 *
645 */
5ac21963 646faim_export unsigned long aim_bos_reqicbmparaminfo(struct aim_session_t *sess,
647 struct aim_conn_t *conn)
9de3ca7e 648{
a25832e6 649 return aim_genericreq_n(sess, conn, 0x0004, 0x0004);
9de3ca7e 650}
e88ba395 651
c78446b5 652/*
653 * Add ICBM parameter? Huh?
654 */
5ac21963 655faim_export unsigned long aim_addicbmparam(struct aim_session_t *sess,
656 struct aim_conn_t *conn)
c78446b5 657{
658 struct command_tx_struct *newpacket;
659 int packlen = 10+16, i=0;
660
646c6b52 661 if(!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, packlen)))
c78446b5 662 return (sess->snac_nextid);
663
664 newpacket->lock = 1;
665
f6686b7e 666 i = aim_putsnac(newpacket->data, 0x0004, 0x0002, 0x0000, 0x00000000);
ee49b735 667
c78446b5 668 i += aimutil_put16(newpacket->data+i, 0x0000);
669 i += aimutil_put16(newpacket->data+i, 0x0000);
670 i += aimutil_put16(newpacket->data+i, 0x0003);
671 i += aimutil_put16(newpacket->data+i, 0x1f40);
672 i += aimutil_put16(newpacket->data+i, 0x03e7);
673 i += aimutil_put16(newpacket->data+i, 0x03e7);
674 i += aimutil_put16(newpacket->data+i, 0x0000);
675 i += aimutil_put16(newpacket->data+i, 0x0000);
676
677 aim_tx_enqueue(sess, newpacket);
678
ee49b735 679 return sess->snac_nextid;
c78446b5 680}
f2d214f9 681
682/*
683 * Set directory profile data (not the same as aim_bos_setprofile!)
684 */
685faim_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)
686{
687 struct command_tx_struct *newpacket;
688 int packlen = 0, i = 0;
689
690 packlen += 2+2+2;
691
692 if(first) /* TLV 0001 */
693 packlen += (strlen(first) + 4);
694 if(middle)
695 packlen += (strlen(middle) + 4);
696 if(last)
697 packlen += (strlen(last) + 4);
698 if(maiden)
699 packlen += (strlen(maiden) + 4);
700 if(nickname)
701 packlen += (strlen(nickname) + 4);
702 if(street)
703 packlen += (strlen(street) + 4);
704 if(state)
705 packlen += (strlen(state) + 4);
706 if(city)
707 packlen += (strlen(city) + 4);
708 if(zip)
709 packlen += (strlen(zip) + 4);
710
646c6b52 711 if(!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, packlen+10)))
f2d214f9 712 return -1;
713
714 newpacket->lock = 1;
715
716 i = aim_putsnac(newpacket->data, 0x0002, 0x0009, 0x0000, 0);
717
718 /* 000a/0002: privacy: 1 to allow search/disp, 0 to disallow */
719 i += aim_puttlv_16(newpacket->data+i, 0x000a, privacy);
720
721
722 if (first)
723 i += aim_puttlv_str(newpacket->data+i, 0x0001, strlen(first), first);
724 if (middle)
725 i += aim_puttlv_str(newpacket->data+i, 0x0003, strlen(middle), middle);
726 if (last)
727 i += aim_puttlv_str(newpacket->data+i, 0x0002, strlen(last), last);
728 if (maiden)
729 i += aim_puttlv_str(newpacket->data+i, 0x0004, strlen(maiden), maiden);
730 if (nickname)
731 i += aim_puttlv_str(newpacket->data+i, 0x000c, strlen(nickname), nickname);
732 if (street)
733 i += aim_puttlv_str(newpacket->data+i, 0x0021, strlen(street), street);
734 if (city)
735 i += aim_puttlv_str(newpacket->data+i, 0x0008, strlen(city), city);
736 if (state)
737 i += aim_puttlv_str(newpacket->data+i, 0x0007, strlen(state), state);
738 if (zip)
739 i += aim_puttlv_str(newpacket->data+i, 0x000d, strlen(zip), zip);
740
741 newpacket->commandlen = i;
742 newpacket->lock = 0;
743
744 aim_tx_enqueue(sess, newpacket);
745
746 return(sess->snac_nextid);
747}
748
749faim_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)
750{
751 struct command_tx_struct *newpacket;
752 int packlen = 0, i = 0;
753
754 packlen += 2+2+2;
755
756 if(interest1)
757 packlen += (strlen(interest1) + 4);
758 if(interest2)
759 packlen += (strlen(interest2) + 4);
760 if(interest3)
761 packlen += (strlen(interest3) + 4);
762 if(interest4)
763 packlen += (strlen(interest4) + 4);
764 if(interest5)
765 packlen += (strlen(interest5) + 4) ;
766
767
646c6b52 768 if(!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, packlen+10)))
f2d214f9 769 return -1;
770
771 newpacket->lock = 1;
772
773 i = aim_putsnac(newpacket->data, 0x0002, 0x000f, 0x0000, 0);
774
775 /* 000a/0002: 0000 ?? ?privacy? */
776 i += aim_puttlv_16(newpacket->data+i, 0x000a, privacy);
777
778 if(interest1)
779 i += aim_puttlv_str(newpacket->data+i, 0x000b, strlen(interest1), interest1);
780 if(interest2)
781 i += aim_puttlv_str(newpacket->data+i, 0x000b, strlen(interest2), interest2);
782 if(interest3)
783 i += aim_puttlv_str(newpacket->data+i, 0x000b, strlen(interest3), interest3);
784 if(interest4)
785 i += aim_puttlv_str(newpacket->data+i, 0x000b, strlen(interest4), interest4);
786 if(interest5)
787 i += aim_puttlv_str(newpacket->data+i, 0x000b, strlen(interest1), interest5);
788
789 newpacket->commandlen = i;
790 newpacket->lock = 0;
791
792 aim_tx_enqueue(sess, newpacket);
793
794 return(sess->snac_nextid);
795}
ec6b8da8 796
797faim_export unsigned long aim_icq_setstatus(struct aim_session_t *sess,
798 struct aim_conn_t *conn,
799 unsigned long status)
800{
801 struct command_tx_struct *newpacket;
802 int i;
803 unsigned long data;
804
805 data = 0x00030000 | status; /* yay for error checking ;^) */
806
646c6b52 807 if(!(newpacket = aim_tx_new(sess, conn, AIM_FRAMETYPE_OSCAR, 0x0002, 10 + 4)))
ec6b8da8 808 return -1;
809
810 newpacket->lock = 1;
811
812 i = aim_putsnac(newpacket->data, 0x0001, 0x001e, 0x0000, 0x0000001e);
813 i += aim_puttlv_32(newpacket->data+i, 0x0006, data);
814
815 newpacket->commandlen = i;
816 newpacket->lock = 0;
817
818 aim_tx_enqueue(sess, newpacket);
819
820 return(sess->snac_nextid);
821}
00ef5271 822
823/*
824 * Should be generic enough to handle the errors for all families...
825 *
826 */
827static int generror(struct aim_session_t *sess, aim_module_t *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen)
828{
829 int ret = 0;
830 int error = 0;
e677fc43 831 aim_rxcallback_t userfunc;
00ef5271 832 struct aim_snac_t *snac2;
833
834 snac2 = aim_remsnac(sess, snac->id);
835
836 if (datalen)
837 error = aimutil_get16(data);
838
839 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
840 ret = userfunc(sess, rx, error, snac2?snac2->data:NULL);
841
842 if (snac2)
843 free(snac2->data);
844 free(snac2);
845
846 return ret;
847}
848
849static int snachandler(struct aim_session_t *sess, aim_module_t *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen)
850{
851
852 if (snac->subtype == 0x0001)
853 return generror(sess, mod, rx, snac, data, datalen);
854 else if ((snac->family == 0xffff) && (snac->subtype == 0xffff)) {
e677fc43 855 aim_rxcallback_t userfunc;
00ef5271 856
857 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
858 return userfunc(sess, rx);
859 }
860
861 return 0;
862}
863
864faim_internal int misc_modfirst(struct aim_session_t *sess, aim_module_t *mod)
865{
866
867 mod->family = 0xffff;
868 mod->version = 0x0000;
869 mod->flags = AIM_MODFLAG_MULTIFAMILY;
870 strncpy(mod->name, "misc", sizeof(mod->name));
871 mod->snachandler = snachandler;
872
873 return 0;
874}
This page took 2.644101 seconds and 5 git commands to generate.