Changeset 8354 for config

Show
Ignore:
Timestamp:
03/25/08 02:19:55 (8 months ago)
Author:
drry
Message:

config/proxy.pac/dolipo/drry-proxy.pac:

  • (trivial)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • config/proxy.pac/dolipo/drry-proxy.pac

    r7357 r8354  
    11function FindProxyForURL(url, host) { 
    2   return 
    3     isPlainHostName(host) || 
     2  return (isPlainHostName(host) || 
    43    url.indexOf("ftp:") == 0 || 
    54    //url.indexOf("gopher:") == 0 || // Gopher never die!!! 
     
    2120    isInNet(host, "224.0.0.0",   "224.0.0.0") 
    2221      ? "DIRECT" 
    23       : "PROXY 127.0.0.1:8123; DIRECT"; 
     22      : "PROXY 127.0.0.1:8123; DIRECT"); 
    2423}