BIND 10 trac499, updated. 8a18de79026a2620f82662d308c4f87e9a54faa3 [trac499] Initial entrypoint logic for handling TC queries
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Jan 27 18:22:25 UTC 2011
The branch, trac499 has been updated
via 8a18de79026a2620f82662d308c4f87e9a54faa3 (commit)
from 5720ab60da4b443e9414852234d65acccd8e9e4e (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 8a18de79026a2620f82662d308c4f87e9a54faa3
Author: Scott Mann <smann at isc.org>
Date: Thu Jan 27 11:20:22 2011 -0700
[trac499] Initial entrypoint logic for handling TC queries
-----------------------------------------------------------------------
Summary of changes:
src/lib/asiolink/asiolink.cc | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/asiolink/asiolink.cc b/src/lib/asiolink/asiolink.cc
index a87afa6..ef5d670 100644
--- a/src/lib/asiolink/asiolink.cc
+++ b/src/lib/asiolink/asiolink.cc
@@ -417,6 +417,11 @@ private:
// returns true if we are done
// returns false if we are not done
bool handleRecursiveAnswer(const Message& incoming) {
+ //temporary code to grab TC enabled responses
+ if(incoming.getHeaderFlag(Message::HEADERFLAG_TC)) {
+ //TC (truncated) bit is set, which means we need to use TCP
+ // need to check if TCP conn already open (RFC 5966)
+ }
if (incoming.getRRCount(Message::SECTION_ANSWER) > 0) {
dlog("Got final result, copying answer.");
copyAnswerMessage(incoming, answer_message_);
More information about the bind10-changes
mailing list