Skip to content
Snippets Groups Projects
Commit 479821ab authored by Carin Gilles's avatar Carin Gilles
Browse files

socks5 spécifique pac

parent 8d661215
Branches master
No related tags found
No related merge requests found
function FindProxyForURL(url, host){
if (dnsDomainIs(host,".priv.lifl.fr"))
return "SOCKS5 127.0.0.1:8080";
else if (isInNet(host, "192.168.10.0", "255.255.255.0"))
return "SOCKS5 127.0.0.1:8080";
else
return "DIRECT";
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment