BIND 10 trac1176, updated. 84d83c1d8979e2906971af79f2e41083299beb7e [1176] Interface to do dnssec query
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Aug 25 20:55:35 UTC 2011
The branch, trac1176 has been updated
via 84d83c1d8979e2906971af79f2e41083299beb7e (commit)
from 8d380bb47dd24c7fd2c4880a4106835d871bf4d5 (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 84d83c1d8979e2906971af79f2e41083299beb7e
Author: Michal 'vorner' Vaner <michal.vaner at nic.cz>
Date: Thu Aug 25 22:54:20 2011 +0200
[1176] Interface to do dnssec query
-----------------------------------------------------------------------
Summary of changes:
src/bin/auth/query.h | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/auth/query.h b/src/bin/auth/query.h
index 13523e8..47d5247 100644
--- a/src/bin/auth/query.h
+++ b/src/bin/auth/query.h
@@ -139,11 +139,13 @@ public:
/// \param qname The query name
/// \param qtype The RR type of the query
/// \param response The response message to store the answer to the query.
+ /// \param dnssec If the answer should include signatures and NSEC/NSEC3 if
+ /// possible.
Query(const isc::datasrc::DataSourceClient& datasrc_client,
const isc::dns::Name& qname, const isc::dns::RRType& qtype,
- isc::dns::Message& response) :
+ isc::dns::Message& response, bool dnssec = false) :
datasrc_client_(datasrc_client), qname_(qname), qtype_(qtype),
- response_(response)
+ response_(response), dnssec_(dnssec)
{}
/// Process the query.
@@ -211,6 +213,7 @@ private:
const isc::dns::Name& qname_;
const isc::dns::RRType& qtype_;
isc::dns::Message& response_;
+ const bool dnssec_;
};
}
More information about the bind10-changes
mailing list