onion.pac 202 B

1234567891011121314
  1. function FindProxyForURL(url, host)
  2. {
  3. if (shExpMatch(host,"*.onion"))
  4. {
  5. return "SOCKS 127.0.0.1:9050";
  6. }
  7. if (shExpMatch(host,"*.i2p"))
  8. {
  9. return "HTTP 127.0.0.1:4444";
  10. }
  11. return "DIRECT";
  12. }