comparison src/protocols/oscar/icon.c @ 4870:773135edda4a

[gaim-migrate @ 5200] Added 3-stage typing notification for oscar direct connect (incoming and outgoing). Previously Gaim only had "typing" and "no text entered." I added support for "text typed." Made Gaim correctly recognize and send the auto-response flag for direct connections. So messages will probably show up as "AUTO-REPLY" for you and your amigo. Have gaim save your blist after recieving someone's icon, which is a bugfix from my code from last night, I think. Fixed a memleak in icon.c thanks to Nathan Walp. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 23 Mar 2003 07:38:55 +0000
parents fbfdacf7c611
children e6dbac19a8d5
comparison
equal deleted inserted replaced
4869:e6c7d67c1f3a 4870:773135edda4a
71 icon = aimbs_getraw(bs, iconlen); 71 icon = aimbs_getraw(bs, iconlen);
72 72
73 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype))) 73 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
74 return userfunc(sess, rx, sn, iconcsum, iconcsumlen, icon, iconlen); 74 return userfunc(sess, rx, sn, iconcsum, iconcsumlen, icon, iconlen);
75 75
76 free(sn);
76 free(iconcsum); 77 free(iconcsum);
77 free(icon); 78 free(icon);
78 79
79 return 0; 80 return 0;
80 } 81 }