comparison libpurple/protocols/msn/slp.c @ 30762:e03f912141dd

Start moving p2p specific code to its own module.
author masca@cpw.pidgin.im
date Thu, 03 Jun 2010 21:07:08 +0000
parents 9429f30001f6
children 23b7b1b817c8
comparison
equal deleted inserted replaced
30761:712c8ddcf5ed 30762:e03f912141dd
32 32
33 #include "object.h" 33 #include "object.h"
34 #include "user.h" 34 #include "user.h"
35 #include "switchboard.h" 35 #include "switchboard.h"
36 #include "directconn.h" 36 #include "directconn.h"
37 #include "p2p.h"
37 38
38 #include "smiley.h" 39 #include "smiley.h"
39 40
40 /* seconds to delay between sending buddy icon requests to the server. */ 41 /* seconds to delay between sending buddy icon requests to the server. */
41 #define BUDDY_ICON_DELAY 20 42 #define BUDDY_ICON_DELAY 20
516 msn_slplink_queue_slpmsg(slplink, slpmsg); 517 msn_slplink_queue_slpmsg(slplink, slpmsg);
517 518
518 /* DATA */ 519 /* DATA */
519 slpmsg = msn_slpmsg_new(slplink); 520 slpmsg = msn_slpmsg_new(slplink);
520 slpmsg->slpcall = slpcall; 521 slpmsg->slpcall = slpcall;
521 slpmsg->flags = SLP_HF_MSN_OBJ_DATA; 522 slpmsg->flags = P2P_MSN_OBJ_DATA;
522 slpmsg->info = "SLP DATA"; 523 slpmsg->info = "SLP DATA";
523 msn_slpmsg_set_image(slpmsg, img); 524 msn_slpmsg_set_image(slpmsg, img);
524 msn_slplink_queue_slpmsg(slplink, slpmsg); 525 msn_slplink_queue_slpmsg(slplink, slpmsg);
525 purple_imgstore_unref(img); 526 purple_imgstore_unref(img);
526 527