BIND 10 master, updated. 6fad0e38082ed1078acb7add13321212dccdcf88 [master] comment cleanup: s/RBTree/ZoneTree/
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Sep 27 19:03:16 UTC 2012
The branch, master has been updated
via 6fad0e38082ed1078acb7add13321212dccdcf88 (commit)
from ac07f31fa2182962f4e958330fc460abeac350d5 (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 6fad0e38082ed1078acb7add13321212dccdcf88
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Thu Sep 27 12:02:57 2012 -0700
[master] comment cleanup: s/RBTree/ZoneTree/
committing at my discretion.
-----------------------------------------------------------------------
Summary of changes:
src/lib/datasrc/memory/memory_client.cc | 2 +-
src/lib/datasrc/memory/zone_finder.cc | 4 ++--
.../datasrc/tests/memory/zone_finder_unittest.cc | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/memory/memory_client.cc b/src/lib/datasrc/memory/memory_client.cc
index a51a1a0..5f6f510 100644
--- a/src/lib/datasrc/memory/memory_client.cc
+++ b/src/lib/datasrc/memory/memory_client.cc
@@ -125,7 +125,7 @@ public:
//
// In order for wildcard matching to work correctly in the zone finder,
// we must ensure that a node for the wildcarding level exists in the
- // backend RBTree.
+ // backend ZoneTree.
// E.g. if the wildcard name is "*.sub.example." then we must ensure
// that "sub.example." exists and is marked as a wildcard level.
// Note: the "wildcarding level" is for the parent name of the wildcard
diff --git a/src/lib/datasrc/memory/zone_finder.cc b/src/lib/datasrc/memory/zone_finder.cc
index 7e7b745..9403c4f 100644
--- a/src/lib/datasrc/memory/zone_finder.cc
+++ b/src/lib/datasrc/memory/zone_finder.cc
@@ -137,7 +137,7 @@ struct FindState {
};
// A callback called from possible zone cut nodes and nodes with DNAME.
-// This will be passed from findNode() to \c RBTree::find().
+// This will be passed from findNode() to \c ZoneTree::find().
bool cutCallback(const ZoneNode& node, FindState* state) {
// We need to look for DNAME first, there's allowed case where
// DNAME and NS coexist in the apex. DNAME is the one to notice,
@@ -264,7 +264,7 @@ createFindResult(const RRClass& rrclass,
// it should always succeed.
//
// node_path must store valid search context (in practice, it's expected
-// to be set by findNode()); otherwise the underlying RBTree implementation
+// to be set by findNode()); otherwise the underlying ZoneTree implementation
// throws.
//
// If the zone is not considered NSEC-signed or DNSSEC records were not
diff --git a/src/lib/datasrc/tests/memory/zone_finder_unittest.cc b/src/lib/datasrc/tests/memory/zone_finder_unittest.cc
index 494f19d..a536bf5 100644
--- a/src/lib/datasrc/tests/memory/zone_finder_unittest.cc
+++ b/src/lib/datasrc/tests/memory/zone_finder_unittest.cc
@@ -897,7 +897,7 @@ InMemoryZoneFinderTest::emptyNodeCheck(
ZoneFinder::FindResultFlags expected_flags)
{
/*
- * The backend RBTree for this test should look like as follows:
+ * The backend ZoneTree for this test should look like as follows:
* example.org
* |
* baz (empty; easy case)
More information about the bind10-changes
mailing list