This realistically belongs in RRset::toText(), but I think current
code expects RRset::toText() to just return text for that RRset and
not any attached RRSIGs.
{}
void operator()(isc::dns::ConstRRsetPtr rrset) {
output_ += " " + rrset->toText();
+
+ if (rrset->getRRsig()) {
+ output_ += " " + rrset->getRRsig()->toText();
+ }
}
private:
std::string& output_;
if (found_rrset_it != expected_end) {
rrsetCheck(*found_rrset_it, *it);
++rrset_matched;
+ rrset_matched += (*it)->getRRsigDataCount();
}
}