Files
squidguard/data/htdocs/www/wpad.dat
T

8 lines
175 B
Plaintext
Raw Normal View History

2022-02-15 09:55:45 -05:00
function FindProxyForURL(url, host)
{
if (isInNet(host, "{{WPAD_NOPROXY_NET}}", "{{WPAD_NOPROXY_MASK}}"))
return "DIRECT";
else
return "PROXY {{WPAD_IP}}:3128";
}