Sign in
mojo
/
mojo-tools
/
dcc2f22a40eb6070ba79b322f8db3a2a7cc1bb22
/
.
/
net
/
data
/
proxy_resolver_v8_tracing_unittest
/
simple_dns.js
blob: 24867b07a3020d3ca32a2a279212bde5378e79df [
file
]
var
g_iteration
=
0
;
function
FindProxyForURL
(
url
,
host
)
{
g_iteration
++;
myIpAddress
();
var
ip
=
dnsResolve
(
host
);
return
"PROXY "
+
ip
+
':'
+
g_iteration
;
}