This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // PAC-script met automatische fallback | |
| // Gebruikersnaam: cmohegqn | Wachtwoord: 0n2yitag3i6c | |
| function FindProxyForURL(url, host) { | |
| // Lokaal verkeer direct | |
| if (isPlainHostName(host)) return "DIRECT"; | |
| if (shExpMatch(host, "localhost")) return "DIRECT"; | |
| if (shExpMatch(host, "127.0.0.1")) return "DIRECT"; | |
| if (shExpMatch(host, "192.168.*")) return "DIRECT"; |