comparison src/protocols/msn/directconn.c @ 14108:7a205b430d19

[gaim-migrate @ 16742] Removing the "error_cb" parameter for gaim_proxy_connect(), changing it back to how it was. As I started making changes to oscar to support canceling connection attempts, I realized that having a separate callback for errors would result in more code duplication than was needed. Originally I thought the separate callback would make things cleaner. Anyway, sorry for the noise. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 14 Aug 2006 04:43:38 +0000
parents 10e8eb6a4910
children e149556f7569
comparison
equal deleted inserted replaced
14107:c0ee28af3ca2 14108:7a205b430d19
437 servconn->http_data->gateway_host = g_strdup(host); 437 servconn->http_data->gateway_host = g_strdup(host);
438 } 438 }
439 #endif 439 #endif
440 440
441 connect_info = gaim_proxy_connect(session->account, host, port, 441 connect_info = gaim_proxy_connect(session->account, host, port,
442 connect_cb, NULL, directconn); 442 connect_cb, directconn);
443 443
444 if (connect_info != NULL) 444 if (connect_info != NULL)
445 { 445 {
446 return TRUE; 446 return TRUE;
447 } 447 }