comparison src/protocols/msn/httpmethod.c @ 8273:f24172f53650

[gaim-migrate @ 8997] This is Scott Lamb's eventloop abstraction patch. If it breaks things, Scott Lamb will be glad to take the punishment. If it doesn't, it should make integration into other event loops easier. Well, no, not easier, harder actually, but it'll be done more appropriately and less hackily.. er, hacky. Is hackily a word? committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 17 Feb 2004 02:17:48 +0000
parents aa44049e8891
children ef881489396e
comparison
equal deleted inserted replaced
8272:9af78e73f0b2 8273:f24172f53650
76 start_timer(MsnServConn *servconn) 76 start_timer(MsnServConn *servconn)
77 { 77 {
78 stop_timer(servconn); 78 stop_timer(servconn);
79 79
80 gaim_debug(GAIM_DEBUG_INFO, "msn", "Starting timer\n"); 80 gaim_debug(GAIM_DEBUG_INFO, "msn", "Starting timer\n");
81 servconn->http_data->timer = g_timeout_add(5000, http_poll, servconn); 81 servconn->http_data->timer = gaim_timeout_add(5000, http_poll, servconn);
82 } 82 }
83 83
84 size_t 84 size_t
85 msn_http_servconn_write(MsnServConn *servconn, const char *buf, size_t size, 85 msn_http_servconn_write(MsnServConn *servconn, const char *buf, size_t size,
86 const char *server_type) 86 const char *server_type)