/* * DO NOT EDIT! DO NOT EDIT! DO NOT EDIT! DO NOT EDIT! *Any changes you make could be overwritten by the admin interface */ function FindProxyForURL(url, host) { // Direct connections to non-FQDN hosts if (isPlainHostName(host)) { return "DIRECT"; } // Direct connections to local domain if (dnsDomainIs(host, ".InfoSky.Net") || dnsDomainIs(host, ".InfoSky.com") || dnsDomainIs(host, ".InfoSky.yu") || dnsDomainIs(host, ".informatika.com") || dnsDomainIs(host, ".informatika.co.yu")) { return "DIRECT"; } // Direct connections to local subnets if (isInNet(host, "195.250.96.0", "255.255.255.0") || isInNet(host, "195.250.97.0", "255.255.255.0") || isInNet(host, "195.250.98.0", "255.255.255.0") || isInNet(host, "195.250.99.0", "255.255.255.0") || isInNet(host, "195.250.100.0", "255.255.255.0")) { return "DIRECT"; } // Otherwise use proxy return "PROXY proxy.InfoSky.Net:8080;" + "PROXY proxy.Informatika.com:8080;" + "PROXY info73.informatika.com:8080;" + "DIRECT"; }