[tor-commits] [tor/maint-0.2.2] client-side DNS proxy server: reply NOTIMPL to unsupported queries
nickm at torproject.org
nickm at torproject.org
Tue Jun 14 17:46:34 UTC 2011
commit 910472c5146ad3e436f1b5238570a2802662319b
Author: intrigeri <intrigeri at boum.org>
Date: Sun Jun 12 11:57:31 2011 +0200
client-side DNS proxy server: reply NOTIMPL to unsupported queries
Fix for bug 3369.
---
src/or/dnsserv.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/or/dnsserv.c b/src/or/dnsserv.c
index 009ab5f..f2c473d 100644
--- a/src/or/dnsserv.c
+++ b/src/or/dnsserv.c
@@ -95,8 +95,8 @@ evdns_server_callback(struct evdns_server_request *req, void *_data)
}
if (!q) {
log_info(LD_APP, "None of the questions we got were ones we're willing "
- "to support. Sending NODATA.");
- evdns_server_request_respond(req, DNS_ERR_NONE);
+ "to support. Sending NOTIMPL.");
+ evdns_server_request_respond(req, DNS_ERR_NOTIMPL);
return;
}
if (q->type != EVDNS_TYPE_A) {
More information about the tor-commits
mailing list