Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tor
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
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
debian
tor
Commits
6a77bde8
Commit
6a77bde8
authored
14 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
Make Sebastian's misc-reasons branch compile; frob the changes file
parent
9bcea4a8
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/misc-reason
+5
-3
5 additions, 3 deletions
changes/misc-reason
src/or/reasons.c
+1
-1
1 addition, 1 deletion
src/or/reasons.c
with
6 additions
and
4 deletions
changes/misc-reason
+
5
−
3
View file @
6a77bde8
o Minor bugfixes:
- Exit nodes didn't recognize EHOSTUNREACH as a stream ending reason
and sent back END_STREAM_REASON_NOROUTE. Also update the spec to
reflect this new reason. Bugfix on 0.1.0.1-rc; fixes bug 1793.
- Exit nodes didn't recognize EHOSTUNREACH as a plausible error
code, and sent back END_STREAM_REASON_MISC. They now send a a
new stream ending reason: END_STREAM_REASON_NOROUTE. Also update
the spec to reflect this new reason. Bugfix on 0.1.0.1-rc; fixes
bug 1793.
This diff is collapsed.
Click to expand it.
src/or/reasons.c
+
1
−
1
View file @
6a77bde8
...
...
@@ -28,7 +28,7 @@ stream_end_reason_to_control_string(int reason)
case
END_STREAM_REASON_DESTROY
:
return
"DESTROY"
;
case
END_STREAM_REASON_DONE
:
return
"DONE"
;
case
END_STREAM_REASON_TIMEOUT
:
return
"TIMEOUT"
;
case
END_STREAM_REASON_NOROUTE
:
"
return "
NOROUTE
";
case
END_STREAM_REASON_NOROUTE
:
return
"NOROUTE"
;
case
END_STREAM_REASON_HIBERNATING
:
return
"HIBERNATING"
;
case
END_STREAM_REASON_INTERNAL
:
return
"INTERNAL"
;
case
END_STREAM_REASON_RESOURCELIMIT
:
return
"RESOURCELIMIT"
;
...
...
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