Skip to content

Instantly share code, notes, and snippets.

@paivaric
Created November 1, 2019 16:39
Show Gist options
  • Save paivaric/19b8032e43a8dec8fafadc02e0587a63 to your computer and use it in GitHub Desktop.
Save paivaric/19b8032e43a8dec8fafadc02e0587a63 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
if (isInNet(host, "172.17.0.0", "255.255.0.0")) {
return "SOCKS5 127.0.0.1:8888";
}
if (isInNet(host, "193.0.0.0", "255.0.0.0")) {
return "SOCKS5 127.0.0.1:8888";
}
return "DIRECT";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment