comparison src/ft.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 858979ab3867
children e557a10a9541
comparison
equal deleted inserted replaced
4633:812148fb2e2f 4634:d19872836812
573 if (ip != NULL) { 573 if (ip != NULL) {
574 xfer->remote_ip = g_strdup(ip); 574 xfer->remote_ip = g_strdup(ip);
575 xfer->remote_port = port; 575 xfer->remote_port = port;
576 576
577 /* Establish a file descriptor. */ 577 /* Establish a file descriptor. */
578 proxy_connect(xfer->remote_ip, xfer->remote_port, 578 proxy_connect(xfer->account, xfer->remote_ip, xfer->remote_port,
579 connect_cb, xfer); 579 connect_cb, xfer);
580 580
581 return; 581 return;
582 } 582 }
583 else { 583 else {