BIND 10 trac2164, updated. d8e429d65956430a292e8462c111cc1a330f3b66 [2164] Add getRRsigDataCount() implementation to RBNodeRRset too

BIND 10 source code commits bind10-changes at lists.isc.org
Mon Aug 13 16:18:46 UTC 2012


The branch, trac2164 has been updated
       via  d8e429d65956430a292e8462c111cc1a330f3b66 (commit)
      from  eaef6b237a71811637b5c8c5c276962a3839a85f (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 d8e429d65956430a292e8462c111cc1a330f3b66
Author: Mukund Sivaraman <muks at isc.org>
Date:   Mon Aug 13 21:45:42 2012 +0530

    [2164] Add getRRsigDataCount() implementation to RBNodeRRset too

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

Summary of changes:
 src/lib/datasrc/memory_datasrc.cc |    5 +++++
 src/lib/datasrc/rbnode_rrset.h    |    2 ++
 2 files changed, 7 insertions(+)

-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/memory_datasrc.cc b/src/lib/datasrc/memory_datasrc.cc
index 90b5917..c6f15fb 100644
--- a/src/lib/datasrc/memory_datasrc.cc
+++ b/src/lib/datasrc/memory_datasrc.cc
@@ -623,6 +623,11 @@ RBNodeRRset::getRRsig() const {
     return (impl_->rrset_->getRRsig());
 }
 
+unsigned int
+RBNodeRRset::getRRsigDataCount() const {
+    return (impl_->rrset_->getRRsigDataCount());
+}
+
 void
 RBNodeRRset::addRRsig(const ConstRdataPtr& rdata) {
     AbstractRRset* p = const_cast<AbstractRRset*>(impl_->rrset_.get());
diff --git a/src/lib/datasrc/rbnode_rrset.h b/src/lib/datasrc/rbnode_rrset.h
index 3161cdb..1c23e05 100644
--- a/src/lib/datasrc/rbnode_rrset.h
+++ b/src/lib/datasrc/rbnode_rrset.h
@@ -154,6 +154,8 @@ public:
 
     virtual isc::dns::RRsetPtr getRRsig() const;
 
+    virtual unsigned int getRRsigDataCount() const;
+
     // With all the RRsig methods, we have the problem that we store the
     // underlying RRset using a ConstRRsetPtr - a pointer to a "const" RRset -
     // but we need to modify it by adding or removing an RRSIG.  We overcome



More information about the bind10-changes mailing list