]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#4049] fixed doxygen
authorRazvan Becheriu <razvan@isc.org>
Thu, 7 Aug 2025 18:00:34 +0000 (21:00 +0300)
committerThomas Markwalder <tmark@isc.org>
Thu, 14 Aug 2025 13:15:52 +0000 (13:15 +0000)
changelog_unreleased/4049-d2-hooks-may-not-have-their-ioservice-s-poll-method-called-frequently-enough
src/bin/d2/d2_process.cc
src/lib/asiolink/io_service.cc
src/lib/asiolink/io_service.h

index 01d6c52631552d0eeb26a3616adf3cc168d43bc2..57a60c0a7b10baa0b33ebd90ab526c4b1e0523bc 100644 (file)
@@ -1,5 +1,5 @@
 [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)
index 3c1d2d07bee699a391df41166b592307f364f213..21aab0fc8876022190ec76eb1c9517a212d20863 100644 (file)
@@ -163,7 +163,7 @@ D2Process::runIO() {
         // 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) {
index cb63b57b32f5c9f7291adc35eb17347fc362a707..919ce6e143dd24ee2dc400c4ef7f348b21960a6f 100644 (file)
@@ -68,10 +68,10 @@ public:
     /// 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) {
index 5d60dbb2eaef85202ff669af51c7c1fe978a4c56..7dc64715a59158069b581c388d7ff9139d137df8 100644 (file)
@@ -69,10 +69,10 @@ public:
     /// 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);