BIND 10 trac2157_2, updated. 2ac23d0d571713a390d154263040c1f1290bba89 [2157] minor comment fix

BIND 10 source code commits bind10-changes at lists.isc.org
Thu Nov 22 06:55:58 UTC 2012


The branch, trac2157_2 has been updated
       via  2ac23d0d571713a390d154263040c1f1290bba89 (commit)
      from  bce2a3f58dd9c95985a53c6235835aa9fb4c719d (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 2ac23d0d571713a390d154263040c1f1290bba89
Author: Yoshitaka Aharen <aharen at jprs.co.jp>
Date:   Thu Nov 22 15:50:22 2012 +0900

    [2157] minor comment fix

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

Summary of changes:
 src/bin/auth/statistics.cc.pre      |    6 ++++--
 src/bin/auth/statistics.h           |    9 ++++-----
 src/bin/auth/statistics_items.h.pre |   13 +++++++------
 3 files changed, 15 insertions(+), 13 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/bin/auth/statistics.cc.pre b/src/bin/auth/statistics.cc.pre
index 5ead3a2..4a9996b 100644
--- a/src/bin/auth/statistics.cc.pre
+++ b/src/bin/auth/statistics.cc.pre
@@ -44,8 +44,10 @@ namespace {
 
 /// \brief Fill ItemTreePtr with given counter.
 /// \param counter Counter which stores values to fill
-/// \param type_tree CounterSpec corresponding to counter for building item name
-/// \param trees ItemTreePtr to be filled in; caller has ownership of ItemTreePtr
+/// \param type_tree CounterSpec corresponding to counter for building item
+///                  name
+/// \param trees ItemTreePtr to be filled in; caller has ownership of
+///              ItemTreePtr
 void
 fillNodes(const Counter& counter,
           const struct isc::auth::statistics::CounterSpec type_tree[],
diff --git a/src/bin/auth/statistics.h b/src/bin/auth/statistics.h
index 313e99f..07812ee 100644
--- a/src/bin/auth/statistics.h
+++ b/src/bin/auth/statistics.h
@@ -114,7 +114,6 @@ public:
 
     /// \brief Set request EDNS attributes.
     /// \param is_edns_0 true if request is EDNS version 0
-    /// \param is_edns_badver true if request is EDNS version other than 0
     /// \throw None
     void setRequestEDNS0(const bool is_edns_0) {
         bit_attributes_[REQ_IS_EDNS_0] = is_edns_0;
@@ -134,15 +133,15 @@ public:
         bit_attributes_[REQ_IS_DNSSEC_OK] = is_dnssec_ok;
     };
 
-    /// \brief Get request TSIG signed and verified.
-    /// \return true if request is TSIG signed and verified
+    /// \brief Get request TSIG signed.
+    /// \return true if request is TSIG signed
     /// \throw None
     bool getRequestSigTSIG() const {
         return (bit_attributes_[REQ_IS_TSIG]);
     };
 
-    /// \brief Get request SIG(0) signed and verified.
-    /// \return true if request is SIG(0) signed and verified
+    /// \brief Get request SIG(0) signed.
+    /// \return true if request is SIG(0) signed
     /// \throw None
     bool getRequestSigSIG0() const {
         return (bit_attributes_[REQ_IS_SIG0]);
diff --git a/src/bin/auth/statistics_items.h.pre b/src/bin/auth/statistics_items.h.pre
index eb76637..80317c0 100644
--- a/src/bin/auth/statistics_items.h.pre
+++ b/src/bin/auth/statistics_items.h.pre
@@ -23,14 +23,15 @@ namespace auth {
 namespace statistics {
 
 struct CounterSpec {
-    // item name: Name of this node. This appears in the spec file.
+    /// \brief name Name of this node. This appears in the spec file.
     const char* const name;
-    // sub counters: If this is a branch node, sub_counters points to
-    //               CounterSpec which contains child nodes. Otherwise, for
-    //               leaf nodes, sub_counters is NULL.
+    /// \brief sub_counters If this is a branch node, sub_counters points to
+    ///                     CounterSpec which contains child nodes. Otherwise,
+    ///                     for leaf nodes, sub_counters is NULL.
     const struct CounterSpec* const sub_counters;
-    // counter id: If this is a leaf node, counter_id is an enumerator of this
-    //             item. Otherwise, for branch nodes, counter_id is NOT_ITEM.
+    /// \brief counter_id If this is a leaf node, counter_id is an enumerator
+    ///                   of this item. Otherwise, for branch nodes, counter_id
+    ///                   is NOT_ITEM.
     const int counter_id;
 };
 



More information about the bind10-changes mailing list