comparison src/protocols/oscar/oscar.c @ 3596:bb966d68f9e3

[gaim-migrate @ 3698] I like typing notifcation. I think I'll marry it. Also, if I'm going to go around mentioning gaim on resumes, I can't very well tell people to look for "KingAnt"... :-) committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 06 Oct 2002 05:01:50 +0000
parents 1e60a05c7482
children f6a55922110a
comparison
equal deleted inserted replaced
3595:1e60a05c7482 3596:bb966d68f9e3
2774 if (dim) 2774 if (dim)
2775 aim_send_typing(odata->sess, dim->conn, typing); 2775 aim_send_typing(odata->sess, dim->conn, typing);
2776 else { 2776 else {
2777 struct buddy *b = find_buddy(gc, name); 2777 struct buddy *b = find_buddy(gc, name);
2778 if (b && (b->uc & UC_TYPINGNOT)) { 2778 if (b && (b->uc & UC_TYPINGNOT)) {
2779 if (typing) 2779 if (typing == TYPING)
2780 aim_mtn_send(odata->sess, 0x0001, name, 0x0002); 2780 aim_mtn_send(odata->sess, 0x0001, name, 0x0002);
2781 else if (typing == TYPED)
2782 aim_mtn_send(odata->sess, 0x0001, name, 0x0001);
2781 else 2783 else
2782 aim_mtn_send(odata->sess, 0x0001, name, 0x0000); 2784 aim_mtn_send(odata->sess, 0x0001, name, 0x0000);
2783 } 2785 }
2784 } 2786 }
2785 return 0; 2787 return 0;