blob: 1bfbbfd88e5079d9301bf85a1b074420cb189d25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
var g_iteration = 0;
function FindProxyForURL(url, host) {
g_iteration++;
for (var i = 0; i < g_iteration; ++i) {
myIpAddress();
}
var result = '' + dnsResolve('host' + g_iteration);
result += g_iteration;
alert('iteration: ' + g_iteration);
return 'PROXY ' + result + ':34';
}
|