Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Tor
Commits
a25c0a5b
Commit
a25c0a5b
authored
13 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'public/bug3369' into maint-0.2.2
parents
e70e8367
e470f6a8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changes/bug3369
+4
-0
4 additions, 0 deletions
changes/bug3369
src/or/dnsserv.c
+2
-2
2 additions, 2 deletions
src/or/dnsserv.c
with
6 additions
and
2 deletions
changes/bug3369
0 → 100644
+
4
−
0
View file @
a25c0a5b
o Minor bugfixes:
- When asked about a DNS record type we don't support via a
client DNSPort, reply with NOTIMPL rather than an empty
reply. Patch by intrigeri. Fixes bug 3369; bugfix on 2.0.1-alpha.
This diff is collapsed.
Click to expand it.
src/or/dnsserv.c
+
2
−
2
View file @
a25c0a5b
...
...
@@ -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 NO
DATA
."
);
evdns_server_request_respond
(
req
,
DNS_ERR_NO
NE
);
"to support. Sending NO
TIMPL
."
);
evdns_server_request_respond
(
req
,
DNS_ERR_NO
TIMPL
);
return
;
}
if
(
q
->
type
!=
EVDNS_TYPE_A
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment