home *** CD-ROM | disk | FTP | other *** search
- package sun.net.www.protocol.http;
-
- import java.net.InetAddress;
- import java.net.UnknownHostException;
- import java.security.PrivilegedAction;
-
- class HttpURLConnection$2 implements PrivilegedAction {
- // $FF: synthetic field
- private final String val$h1;
- // $FF: synthetic field
- private final String val$h2;
- // $FF: synthetic field
- private final boolean[] val$result;
-
- HttpURLConnection$2(String var1, String var2, boolean[] var3) {
- this.val$h1 = var1;
- this.val$h2 = var2;
- this.val$result = var3;
- }
-
- public Object run() {
- try {
- InetAddress var1 = InetAddress.getByName(this.val$h1);
- InetAddress var2 = InetAddress.getByName(this.val$h2);
- this.val$result[0] = var1.equals(var2);
- } catch (UnknownHostException var3) {
- } catch (SecurityException var4) {
- }
-
- return null;
- }
- }
-