// Send the command to the front-end
if (myLogger.isLoggable(Logger.FINER)) {
myLogger.log(Logger.FINER, myID+" - Delivering keep-alive to front-end");
}
JICPPacket cmd = new JICPPacket(JICPProtocol.KEEP_ALIVE_TYPE, JICPProtocol.DEFAULT_INFO, null);
c.writePacket(cmd);
close(c);
// Wait for the response
JICPPacket response = getResponse(RESPONSE_TIMEOUT + RESPONSE_TIMEOUT_INCREMENT * (cmd.getLength() / 1024));
if (isKeepAliveResponse(response)) {
if (myLogger.isLoggable(Logger.FINER)) {