static final bool loadPageThroughProxy_enabled = true; static S loadPageThroughProxy(S url) { adbForward(); DialogIO io = talkToOpt("localhost", 4995); // Test ADB Bridge if (io == null) io = talkToOpt(gateway(), 4999); // Phone, Public Comm Bot if (io == null) ret null; S answer = unquote(io.ask(forward("Awareness", format("loadPage *", url)))); io.close(); if (swic(answer, "ok ")) ret answer.substring(3); fail(answer); }