| 123456789101112131415 |
- function FindProxyForURL(url, host) {
- if (
- dnsDomainIs(host, "lepao.ctbu.edu.cn") ||
- shExpMatch(host, "*.lepao.ctbu.edu.cn") ||
- dnsDomainIs(host, "jkes.smart-campus.com.cn") ||
- shExpMatch(host, "*.smart-campus.com.cn") ||
- shExpMatch(url, "*jkes.smart-campus.com.cn:50077*")
- ) {
- return "PROXY 211.101.235.68:16666"
- }
- return "DIRECT"
- }
|