client-side DNS proxy server: reply NOTIMPL to unsupported queries

Fix for bug 3369.
This commit is contained in:
intrigeri 2011-06-12 11:57:31 +02:00 committed by Nick Mathewson
parent f303274490
commit 910472c514

View File

@ -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) {