comparison src/protocols/oscar/auth.c @ 4230:9f729d6d88a6

[gaim-migrate @ 4475] This is 128KB of raw kickassyness. AKA ICQ SSI. I've rewritten all the important parts of ssi.c. Things should be better. One thing I like a lot is that gaim will store the alias you assign to buddies in your server list for both AIM and ICQ. WinICQ supports this, but WinAIM doesn't. However, it doesn't seem to interfere with WinAIM, and Gaim can still use it. I dunno, I just think it's neat. Anyway, go nuts. Let me know if something doesn't work, because that's bad. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 07 Jan 2003 21:19:05 +0000
parents c5ce82228a2f
children 79d871c11eb9
comparison
equal deleted inserted replaced
4229:c1857c9c912d 4230:9f729d6d88a6
479 char *keystr; 479 char *keystr;
480 480
481 keylen = aimbs_get16(bs); 481 keylen = aimbs_get16(bs);
482 keystr = aimbs_getstr(bs, keylen); 482 keystr = aimbs_getstr(bs, keylen);
483 483
484 /* XXX - When GiantGrayPanda signed on AIM I got a thing asking me to register
485 * for the netscape network. This SNAC had a type 0x0058 TLV with length 10.
486 * Data is 0x0007 0004 3e19 ae1e 0006 0004 0000 0005 */
487
484 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype))) 488 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
485 ret = userfunc(sess, rx, keystr); 489 ret = userfunc(sess, rx, keystr);
486 490
487 free(keystr); 491 free(keystr);
488 492