comparison src/protocols/yahoo/yahoo.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 bdd0bebd2d04
children 9682c0e022c6
comparison
equal deleted inserted replaced
3595:1e60a05c7482 3596:bb966d68f9e3
1174 struct yahoo_data *yd = gc->proto_data; 1174 struct yahoo_data *yd = gc->proto_data;
1175 struct yahoo_packet *pkt = yahoo_packet_new(YAHOO_SERVICE_NOTIFY, YAHOO_STATUS_TYPING, 0); 1175 struct yahoo_packet *pkt = yahoo_packet_new(YAHOO_SERVICE_NOTIFY, YAHOO_STATUS_TYPING, 0);
1176 yahoo_packet_hash(pkt, 49, "TYPING"); 1176 yahoo_packet_hash(pkt, 49, "TYPING");
1177 yahoo_packet_hash(pkt, 1, gc->displayname); 1177 yahoo_packet_hash(pkt, 1, gc->displayname);
1178 yahoo_packet_hash(pkt, 14, " "); 1178 yahoo_packet_hash(pkt, 14, " ");
1179 yahoo_packet_hash(pkt, 13, typ ? "1" : "0"); 1179 yahoo_packet_hash(pkt, 13, typ == TYPING ? "1" : "0");
1180 yahoo_packet_hash(pkt, 5, who); 1180 yahoo_packet_hash(pkt, 5, who);
1181 yahoo_packet_hash(pkt, 1002, "1"); 1181 yahoo_packet_hash(pkt, 1002, "1");
1182 1182
1183 yahoo_send_packet(yd, pkt); 1183 yahoo_send_packet(yd, pkt);
1184 1184