by slumley » Nov 19 04 9:59 am
Hi again,
One more twist, what it i want to add a proxy to the local traffic option, the 196.* traffic?
Would it be something like:
function FindProxyForURL(url, host)
{
if (isInNet(host, "196.0.0.0", "255.0.0.0"))
return PROXY 192.168.0.1:80; DIRECT";
else
return "PROXY 192.168.0.2:81; DIRECT";
}
192.168.0.1 : 80 is a proxy on the other PC.