comparison src/protocols/msn/msn.c @ 5506:4f72b611f0ee

[gaim-migrate @ 5905] A few changes here. - Messages now have reference counting. - There's a message queue API in servconn. This was needed for times when we have a message but need further information from a command before processing it, like initial e-mail notifications. - As a result of the two above, we now have initial e-mail notifications again! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 25 May 2003 09:04:32 +0000
parents 870207a49f2f
children b87d7459e7d2
comparison
equal deleted inserted replaced
5505:870207a49f2f 5506:4f72b611f0ee
452 MsnUser *user; 452 MsnUser *user;
453 453
454 user = msn_user_new(session, who, NULL); 454 user = msn_user_new(session, who, NULL);
455 455
456 msg = msn_message_new(); 456 msg = msn_message_new();
457 msn_message_set_flag(msg, 'D');
457 msn_message_set_receiver(msg, user); 458 msn_message_set_receiver(msg, user);
458 msn_message_set_attr(msg, "X-MMS-IM-Format", 459 msn_message_set_attr(msg, "X-MMS-IM-Format",
459 "FN=Arial; EF=; CO=0; PF=0"); 460 "FN=Arial; EF=; CO=0; PF=0");
460 msn_message_set_body(msg, message); 461 msn_message_set_body(msg, message);
461 462