home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 September / PCWorld_1999-09_cd.bin / Komunik / Guru / WinRoute / wrp30en.exe / FILES / PROXY.PAC next >
Encoding:
Text File  |  1997-09-15  |  630 b   |  28 lines

  1. // Examples of proxy autoconfig file
  2. // See http://home.netscape.com/eng/mozilla/2.0/relnotes/demo/proxy-live.html
  3. // for details
  4.  
  5. // example nr.1
  6. function FindProxyForURL(url, host)
  7. {
  8.    if (isPlainHostName(host))
  9.        return "DIRECT";
  10.     else
  11.        return "PROXY proxy:3128";    // ! replace "proxy" with the IP address
  12. }                    // of computer running WinRoute
  13.  
  14.  
  15.  
  16. /*
  17.  
  18. // example nr.2
  19. function FindProxyForURL(url, host)
  20.     {
  21.         if (isPlainHostName(host) ||
  22.             dnsDomainIs(host, ".our.domain.cz"))
  23.             return "DIRECT";
  24.         else
  25.             return "PROXY proxy:3128T";
  26.     }
  27.  
  28. */