[bug] tmark
Fixed an issue in kea-dhcp-ddns which was
- causing GSSI key exchanges to timeout when
- NCR traffic is intermittent.
+ causing GSS-TSIG key exchanges to timeout when
+ NCR traffic is intermittent.
(Gitlab #4049)
// Polling ran no handlers so either none are ready or the service has been
// stopped. Either way, call runOneFor() to wait for a IO event on the
// main service. If the service is stopped it will return immediately
- // with a cnt of zero and timed_out set to false.
+ // with a cnt of zero and timed_out set to false.
bool timed_out;
cnt = getIOService()->runOneFor(IO_SERVICE_RUN_TIME_USECS, timed_out);
if (timed_out) {
/// number of handlers executed is zero and timed_out is set to
/// false this indicates that the IOService was stopped.
///
- /// @param wait_time_usecs wait time in microseconds
- /// @param[out] time_out set to true if th wait time expired
+ /// @param wait_time_usecs wait time in microseconds.
+ /// @param[out] time_out set to true if the wait time expired
/// without any handlers executing.
- /// timed_out parameter will be set true if the wait time elapsed
+ /// timed_out parameter will be set true if the wait time elapsed.
///
/// @return The number of handlers that were executed.
size_t runOneFor(size_t wait_time_usecs, bool& timed_out) {
/// number of handlers executed is zero and timed_out is set to
/// false this indicates that the IOService was stopped.
///
- /// @param wait_time_usecs wait time in microseconds
- /// @param[out] time_out set to true if th wait time expired
+ /// @param wait_time_usecs wait time in microseconds.
+ /// @param[out] time_out set to true if the wait time expired
/// without any handlers executing.
- /// timed_out parameter will be set true if the wait time elapsed
+ /// timed_out parameter will be set true if the wait time elapsed.
///
/// @return The number of handlers that were executed.
size_t runOneFor(size_t wait_time_usecs, bool& timed_out);