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