blob: 251af9f754621ddec247f294908015f062cd88c6 [file] [log] [blame]
var g_iteration = 0;
function FindProxyForURL(url, host) {
g_iteration++;
var ips = [
dnsResolve('host1'),
dnsResolve('crazy' + g_iteration)
];
alert('iteration: ' + g_iteration);
return 'PROXY ' + ips.join('-') + ':100';
}