blob: 0bae96cd3701559ccd2dd98981b5e8a1e1cc04c6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
function FindProxyForURL(url, host) { if (isPlainHostName(host) || shExpMatch(host, "*.home") ) return "DIRECT" ; else return "PROXY proxy:8080; PROXY proxy-optus:8080; DIRECT"; }
|