mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 04:39:28 +00:00
13 lines
243 B
Plaintext
13 lines
243 B
Plaintext
function FindProxyForURL(url,host)
|
|
{
|
|
if ( isInNet(host,"193.170.255.0","255.255.255.0") ||
|
|
isInNet(host,"193.170.11.0","255.255.255.0") )
|
|
{
|
|
return "DIRECT";
|
|
}
|
|
else
|
|
{
|
|
return "PROXY proxy.technikum-wien.at:3128";
|
|
}
|
|
}
|