From: Robert Wall (Robert.Wall at domain cs.tcd.ie)
Date: Tue 16 Jul 2002 - 12:55:07 IST
> function FindProxyForURL(url, host) {
> if isPlainHostName(host)
> return "DIRECT";
>
> return "PROXY 172.17.1.170:8080";
> }
>
I think you need to use C like syntax for the if statement.
if ( isPlainHostName( host ) )
return "DIRECT";
This archive was generated by hypermail 2.1.6 : Thu 06 Feb 2003 - 13:17:55 GMT