]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3329] ioReady methods were missing commentary in dhcp_ddns.
authorThomas Markwalder <tmark@isc.org>
Thu, 13 Feb 2014 21:33:06 +0000 (16:33 -0500)
committerThomas Markwalder <tmark@isc.org>
Thu, 13 Feb 2014 21:33:06 +0000 (16:33 -0500)
Adding missing commentary in ncr_io.h and ncr_upd.h

src/lib/dhcp_ddns/ncr_io.h
src/lib/dhcp_ddns/ncr_udp.h

index 1946383b839b730be3938adc41ed5febc6fe2c0e..6f8e495a4b334dead5e6d4c9fcab34573c784793 100644 (file)
@@ -576,6 +576,9 @@ public:
     /// @throw NcrSenderError if the sender is not in send mode,
     virtual int getSelectFd() = 0;
 
+    /// @brief Returns whether or not the sender has IO ready to process.
+    ///
+    /// @return true if the sender has at IO ready, false otherwise.
     virtual bool ioReady() = 0;
 
 protected:
index 461589d126df89134b8a52c87949583eedce84e2..1af030830027e52500457972d05fe3742ee666ee 100644 (file)
@@ -542,6 +542,9 @@ public:
     /// @throw NcrSenderError if the sender is not in send mode,
     virtual int getSelectFd();
 
+    /// @brief Returns whether or not the sender has IO ready to process.
+    ///
+    /// @return true if the sender has at IO ready, false otherwise.
     virtual bool ioReady();
 
 private: