comparison src/protocols/yahoo/yahoo.c @ 5939:3014de25a8a4

[gaim-migrate @ 6379] Tim Ringenbach writes: "Here's a one liner to make gaim process YAHOO_SERVICE_CHATMSG packets, which are the same as normal YAHOO_SERVICE_MESSAGE packets, although they seem less featureful. The java client at chat.yahoo.com sends these. It receives the normal ones that gaim sends back fine however. Without this patch, IMs from the java yahoo chat client (possibly others?) just get ignored, which is probably a BadThing(TM)." I tend to agree that missing messages is a Bad Thing, and i know sean won't look at this patch. He'll probly just reverse it because he probly won't like it, but hopefully this way he might at least give some feedback, and maybe it will even stay in and do gaim some good. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 21 Jun 2003 13:35:23 +0000
parents 6a84a1892e26
children 8c44020a958e
comparison
equal deleted inserted replaced
5938:023c5f380b5c 5939:3014de25a8a4
855 case YAHOO_SERVICE_NOTIFY: 855 case YAHOO_SERVICE_NOTIFY:
856 yahoo_process_notify(gc, pkt); 856 yahoo_process_notify(gc, pkt);
857 break; 857 break;
858 case YAHOO_SERVICE_MESSAGE: 858 case YAHOO_SERVICE_MESSAGE:
859 case YAHOO_SERVICE_GAMEMSG: 859 case YAHOO_SERVICE_GAMEMSG:
860 case YAHOO_SERVICE_CHATMSG:
860 yahoo_process_message(gc, pkt); 861 yahoo_process_message(gc, pkt);
861 break; 862 break;
862 case YAHOO_SERVICE_NEWMAIL: 863 case YAHOO_SERVICE_NEWMAIL:
863 yahoo_process_mail(gc, pkt); 864 yahoo_process_mail(gc, pkt);
864 break; 865 break;