Socket s = new Socket(a.getCodeBase().getHost(), DEFAULT_PORT);
if(logger.isLoggable(Logger.CONFIG))
logger.log(Logger.CONFIG,"DFAppletClient connected to local port "+s.getLocalPort()+" and remote port "+s.getPort());
in = new DataInputStream(s.getInputStream());
parser = new ACLParser(in);
out = new PrintStream(s.getOutputStream(),true);
} catch (IOException e) {e.printStackTrace(); a.stop();}
}