8 lines
175 B
Plaintext
Raw Normal View History

function FindProxyForURL(url, host)
{
if (isInNet(host, "{{WPAD_NOPROXY_NET}}", "{{WPAD_NOPROXY_MASK}}"))
return "DIRECT";
else
return "PROXY {{WPAD_IP}}:3128";
}