/* Iterate until we have a value that's good enough. */
isLast = (++sampleCount >= CLOCK_SKEW_MAX_SAMPLE_SIZE) ||
(clockDelay <= CLOCK_SKEW_MIN_DELAY_MS);
protocol.write(protocol.new SNTPRequest(isLast), namedChannel);
SNTPResponse response = protocol.read(namedChannel,
SNTPResponse.class);
if (response.getDelay() < clockDelay) {
clockDelay = response.getDelay();
clockDelta = response.getDelta();
}
} while (!isLast);
LoggerUtils.logMsg