blob: 2f5d8218e2d07b54c6fa6622386223af3dea0450 (
plain)
1
2
3
4
5
6
7
8
|
function FindProxyForURL(url, host)
{
/* Here is an intentional error to test the pac runners.
The correct call would be myIpAddress... DO NOT FIX */
myIP=myNetworkAddress();
return "PROXY " + myIP + ":80";
}
|