From: Thomas Markwalder Date: Thu, 13 Feb 2014 21:33:06 +0000 (-0500) Subject: [3329] ioReady methods were missing commentary in dhcp_ddns. X-Git-Tag: bind10-1.2.0beta1-release~45^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=72d32778775dc5517d208e300710f6a96e1848ee;p=thirdparty%2Fkea.git [3329] ioReady methods were missing commentary in dhcp_ddns. Adding missing commentary in ncr_io.h and ncr_upd.h --- diff --git a/src/lib/dhcp_ddns/ncr_io.h b/src/lib/dhcp_ddns/ncr_io.h index 1946383b83..6f8e495a4b 100644 --- a/src/lib/dhcp_ddns/ncr_io.h +++ b/src/lib/dhcp_ddns/ncr_io.h @@ -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: diff --git a/src/lib/dhcp_ddns/ncr_udp.h b/src/lib/dhcp_ddns/ncr_udp.h index 461589d126..1af0308300 100644 --- a/src/lib/dhcp_ddns/ncr_udp.h +++ b/src/lib/dhcp_ddns/ncr_udp.h @@ -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: