lepao.pac 225 B

1234567891011
  1. function FindProxyForURL(url, host) {
  2. if (
  3. dnsDomainIs(host, "lepao.ctbu.edu.cn") ||
  4. shExpMatch(host, "*.lepao.ctbu.edu.cn")
  5. ) {
  6. return "PROXY 154.64.245.88:6666"
  7. }
  8. return "DIRECT"
  9. }