Skip to content
Snippets Groups Projects
Commit 6a77bde8 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Make Sebastian's misc-reasons branch compile; frob the changes file

parent 9bcea4a8
No related branches found
No related tags found
No related merge requests found
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.
......@@ -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";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment