home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 March
/
PCWorld_1999-03_cd.bin
/
Software
/
Servis
/
WinProxy
/
wp14us.exe
/
PROXY.PA_
/
PROXY.PA
Wrap
Text File
|
1996-09-28
|
655b
|
28 lines
// These are simple examples of proxy autoconfig file
// See http://home.netscape.com/eng/mozilla/2.0/relnotes/demo/proxy-live.html
// for details
// example nr.1
function FindProxyForURL(url, host)
{
if (isPlainHostName(host))
return "DIRECT";
else
return "PROXY proxy:3128"; // ! replace "proxy" with the name or IP address
} // of computer running WinProxy
/*
// example nr.2
function FindProxyForURL(url, host)
{
if (isPlainHostName(host) ||
dnsDomainIs(host, ".our.domain.cz"))
return "DIRECT";
else
return "PROXY proxy:3128T";
}
*/