BIND 10 trac2503, updated. a9eef903b04db257e42e05b1a296251d4ebc6c04 [2503] Rename arguments in protos to match what's used in definitions

BIND 10 source code commits bind10-changes at lists.isc.org
Tue Dec 11 03:08:13 UTC 2012


The branch, trac2503 has been updated
       via  a9eef903b04db257e42e05b1a296251d4ebc6c04 (commit)
       via  7d7b75217f01f143f759b075005c5da834b172e6 (commit)
      from  c4b7c85d1a314e59b20aa055d81cff553b3b8de3 (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 a9eef903b04db257e42e05b1a296251d4ebc6c04
Author: Mukund Sivaraman <muks at isc.org>
Date:   Tue Dec 11 07:27:11 2012 +0530

    [2503] Rename arguments in protos to match what's used in definitions

commit 7d7b75217f01f143f759b075005c5da834b172e6
Author: Mukund Sivaraman <muks at isc.org>
Date:   Tue Dec 11 07:21:46 2012 +0530

    [2503] Add doxygen comment for zone_name args

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

Summary of changes:
 src/lib/datasrc/memory/zone_data.h |   12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/memory/zone_data.h b/src/lib/datasrc/memory/zone_data.h
index 4ac43a0..ee2175b 100644
--- a/src/lib/datasrc/memory/zone_data.h
+++ b/src/lib/datasrc/memory/zone_data.h
@@ -90,10 +90,11 @@ public:
     ///
     /// \param mem_sgmt A \c MemorySegment from which memory for the new
     /// \c NSEC3Data is allocated.
+    /// \param zone_origin The zone origin.
     /// \param rdata An NSEC3PARAM RDATA that specifies the NSEC3 parameters
     /// to be stored.
     static NSEC3Data* create(util::MemorySegment& mem_sgmt,
-                             const dns::Name& zone_name,
+                             const dns::Name& zone_origin,
                              const dns::rdata::generic::NSEC3PARAM& rdata);
 
     /// \brief Allocate and construct \c NSEC3Data from NSEC3 Rdata.
@@ -105,10 +106,11 @@ public:
     ///
     /// \param mem_sgmt A \c MemorySegment from which memory for the new
     /// \c NSEC3Data is allocated.
+    /// \param zone_origin The zone origin.
     /// \param rdata An NSEC3 RDATA that specifies the NSEC3 parameters
     /// to be stored.
     static NSEC3Data* create(util::MemorySegment& mem_sgmt,
-                             const dns::Name& zone_name,
+                             const dns::Name& zone_origin,
                              const dns::rdata::generic::NSEC3& rdata);
 
     /// \brief Destruct and deallocate \c NSEC3Data.
@@ -196,7 +198,7 @@ public:
 private:
     // Common subroutine for the public versions of create().
     static NSEC3Data* create(util::MemorySegment& mem_sgmt,
-                             const dns::Name& zone_name,
+                             const dns::Name& zone_origin,
                              uint8_t hashalg, uint8_t flags,
                              uint16_t iterations,
                              const std::vector<uint8_t>& salt);
@@ -370,9 +372,9 @@ public:
     ///
     /// \param mem_sgmt A \c MemorySegment from which memory for the new
     /// \c ZoneData is allocated.
-    /// \param name The zone name.
+    /// \param name The zone origin.
     static ZoneData* create(util::MemorySegment& mem_sgmt,
-                            const dns::Name& zone_name);
+                            const dns::Name& zone_origin);
 
     /// \brief Destruct and deallocate \c ZoneData.
     ///



More information about the bind10-changes mailing list