Update of /cvsroot/gaim/gaim/src/protocols/jabber
In directory sc8-pr-cvs1:/tmp/cvs-serv4143/src/protocols/jabber
Modified Files:
jabber.c
Log Message:
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.
Index: jabber.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/jabber/jabber.c,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -d -r1.103 -r1.104
--- jabber.c 24 Feb 2003 00:29:53 -0000 1.103
+++ jabber.c 2 Mar 2003 18:48:00 -0000 1.104
@@ -818,7 +818,7 @@
XML_SetElementHandler(gjc->parser, startElement, endElement);
XML_SetCharacterDataHandler(gjc->parser, charData);
- rc = proxy_connect(server, port, gjab_connected, GJ_GC(gjc));
+ rc = proxy_connect(account, server, port, gjab_connected, GJ_GC(gjc));
if (!account->gc || (rc != 0)) {
STATE_EVT(JCONN_STATE_OFF)
return;
|