Comment 295 for bug 113201

Revision history for this message
In , RalfG (ralf-skolelinux) wrote :

BTW, my wpad.dat looks like this (maybe it can be optimized?):
----
function FindProxyForURL(url, host) {

//###############
//#Local Network#
//###############

  if (isInNet(host, "10.0.2.0", "255.255.254.0"))
  {
   return "DIRECT";
  }

//#########
//#Default#
//#########

return "PROXY 10.0.2.2:3128;"

}