230231232233234235236
throws IOException, IncompatibleConnectionException, GeneralSecurityException { checkDevice(); checkInstalled(); Socket sock = local.connect(remote); sock.setSoTimeout(local.getResponseTimeout()); return new MLLPConnection(sock); }
214215216217218219220
} public void open() throws IOException, IncompatibleConnectionException, GeneralSecurityException { sock = conn.connect(remote); sock.setSoTimeout(conn.getResponseTimeout()); mllp = new MLLPConnection(sock); }
169170171172173174175