You are on page 1of 1

function FindProxyForURL(url, host)

{
if (shExpMatch(host, "*localhost*"))
return "DIRECT";
if (shExpMatch(host, "*iteso.mx*"))
return "DIRECT";

if (shExpMatch(host, "*iteso.com*"))
return "DIRECT";
if (shExpMatch(host, "*iteso.com.mx*"))
return "DIRECT";
if (shExpMatch(host, "*iteso.net*"))
return "DIRECT";
if (shExpMatch(host, "*iteso.org*"))
return "DIRECT";
if (shExpMatch(host, "*iteso.info*"))
return "DIRECT";
if (shExpMatch(host, "*ds.iteso.mx*"))
return "DIRECT";
if (shExpMatch(host, "*redes.ausjal.org*"))
return "DIRECT";
if (shExpMatch(host, "*broet*"))
return "DIRECT";
if (shExpMatch(host, "*kingslayer*"))
return "DIRECT";
if (shExpMatch(host, "*148.201*"))
return "DIRECT";

if (shExpMatch(host, "127.0.0.1"))
return "DIRECT";
else
return "PROXY 148.201.32.4:3128; DIRECT";
}

You might also like