comparison src/protocols/msn/switchboard.c @ 4634:d19872836812

[gaim-migrate @ 4941] This will let you set up different proxy settings for different accounts. Mainly useful to the corporate users that need to connect to an internal jabber server, and still want to connect to "external" stuff through a proxy, or something along those lines. I'm sure someone will come up with another use for it. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sun, 02 Mar 2003 18:48:02 +0000
parents a951bb590857
children 283fb289c510
comparison
equal deleted inserted replaced
4633:812148fb2e2f 4634:d19872836812
523 ms = msn_find_writable_switch(gc); 523 ms = msn_find_writable_switch(gc);
524 524
525 if (ms == NULL) 525 if (ms == NULL)
526 return NULL; 526 return NULL;
527 527
528 if (proxy_connect((char *)host, port, msn_ss_xfr_connect, ms) != 0) { 528 if (proxy_connect(gc->account, (char *)host, port, msn_ss_xfr_connect,
529 ms) != 0) {
529 msn_kill_switch(ms); 530 msn_kill_switch(ms);
530 531
531 return NULL; 532 return NULL;
532 } 533 }
533 534