BIND 10 trac496, updated. 08b215209a79db8420d565adaec7309413b01ea7 [trac496] changed some non-doxygen comments to doxygen

BIND 10 source code commits bind10-changes at lists.isc.org
Tue Feb 1 11:07:59 UTC 2011


The branch, trac496 has been updated
       via  08b215209a79db8420d565adaec7309413b01ea7 (commit)
      from  06756779103175d716dbeee36aff59a116eef39d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 08b215209a79db8420d565adaec7309413b01ea7
Author: Jelte Jansen <jelte at isc.org>
Date:   Tue Feb 1 12:07:40 2011 +0100

    [trac496] changed some non-doxygen comments to doxygen

-----------------------------------------------------------------------

Summary of changes:
 src/bin/resolver/response_scrubber.h |   46 +++++++++++++++++-----------------
 1 files changed, 23 insertions(+), 23 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/bin/resolver/response_scrubber.h b/src/bin/resolver/response_scrubber.h
index 0f30b96..5aba823 100644
--- a/src/bin/resolver/response_scrubber.h
+++ b/src/bin/resolver/response_scrubber.h
@@ -164,37 +164,37 @@ public:
 
     /// \brief Response Code for Address Check
     enum Category {
-        SUCCESS = 0,            // Packet is OK
+        SUCCESS = 0,            ///< Packet is OK
 
         // Error categories
 
-        ADDRESS,                // Mismatching IP address
-        PORT                    // Mismatching port
+        ADDRESS,                ///< Mismatching IP address
+        PORT                    ///< Mismatching port
     };
 
-    // \brief Check IP Address
-    //
-    // Compares the address to which the query was sent and the port it was
-    // sent from with the address from which the query was received and the
-    // port it was sent to.
-    //
-    // This is only required of a UDP connection - it is assumed that data that
-    // data received on a TCP stream is received from the system to which the
-    // connection was made.
-    //
-    // \param to Endpoint representing the address to which the query was sent.
-    // \param from Endpoint from which the response was received.
+    /// \brief Check IP Address
+    ///
+    /// Compares the address to which the query was sent and the port it was
+    /// sent from with the address from which the query was received and the
+    /// port it was sent to.
+    ///
+    /// This is only required of a UDP connection - it is assumed that data that
+    /// data received on a TCP stream is received from the system to which the
+    /// connection was made.
+    ///
+    /// \param to Endpoint representing the address to which the query was sent.
+    /// \param from Endpoint from which the response was received.
     static Category addressPortCheck(const asio::ip::udp::endpoint& to,
         const asio::ip::udp::endpoint& from);
 
-    // \brief Check QID
-    //
-    // Compares the QID in the sent message with the QID in the response.
-    //
-    // \param sent Message sent to the authoritative server
-    // \param received Message received from the authoritative server
-    //
-    // \return true if the QIDs match, false otherwise.
+    /// \brief Check QID
+    ///
+    /// Compares the QID in the sent message with the QID in the response.
+    ///
+    /// \param sent Message sent to the authoritative server
+    /// \param received Message received from the authoritative server
+    ///
+    /// \return true if the QIDs match, false otherwise.
     static bool qidCheck(const isc::dns::Message& sent,
         const isc::dns::Message& received) {
         return (sent.getQid() == received.getQid());




More information about the bind10-changes mailing list