BIND 10 master, updated. 3399d44c2d83f81b92a30bec360b3f207029bc3e Record the time when we are using send() as well as sendTo()
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Mar 17 22:09:04 UTC 2011
The branch, master has been updated
via 3399d44c2d83f81b92a30bec360b3f207029bc3e (commit)
from 1516f8a92c2366f34a7c880ba6e6becad841e981 (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 3399d44c2d83f81b92a30bec360b3f207029bc3e
Author: Shane Kerr <shane at isc.org>
Date: Thu Mar 17 21:36:06 2011 +0100
Record the time when we are using send() as well as sendTo()
-----------------------------------------------------------------------
Summary of changes:
src/lib/resolve/recursive_query.cc | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/resolve/recursive_query.cc b/src/lib/resolve/recursive_query.cc
index df5e2d9..0ee5813 100644
--- a/src/lib/resolve/recursive_query.cc
+++ b/src/lib/resolve/recursive_query.cc
@@ -281,6 +281,7 @@ private:
if (test_server_.second != 0) {
dlog("Sending upstream query (" + question_.toText() +
") to test server at " + test_server_.first);
+ gettimeofday(¤t_ns_qsent_time, NULL);
++outstanding_events_;
IOFetch query(protocol, io_, question_,
test_server_.first,
@@ -293,6 +294,7 @@ private:
dlog("Sending upstream query (" + question_.toText() +
") to " + upstream_->at(serverIndex).first);
++outstanding_events_;
+ gettimeofday(¤t_ns_qsent_time, NULL);
IOFetch query(protocol, io_, question_,
upstream_->at(serverIndex).first,
upstream_->at(serverIndex).second, buffer_, this,
More information about the bind10-changes
mailing list