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
cf98ca71
Commit
cf98ca71
authored
7 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge branch 'maint-0.3.2'
parents
332d6bf9
7c59c751
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changes/bug23693
+6
-0
6 additions, 0 deletions
changes/bug23693
src/or/config.c
+1
-0
1 addition, 0 deletions
src/or/config.c
with
7 additions
and
0 deletions
changes/bug23693
0 → 100644
+
6
−
0
View file @
cf98ca71
o Minor bugfixes (relay, crash):
- Avoid a crash when transitioning from client mode to bridge mode.
Previously, we would launch the worker threads whenever our "public
server" mode changed, but not when our "server" mode changed.
Fixes bug 23693; bugfix on 0.2.6.3-alpha.
This diff is collapsed.
Click to expand it.
src/or/config.c
+
1
−
0
View file @
cf98ca71
...
...
@@ -4678,6 +4678,7 @@ options_transition_affects_workers(const or_options_t *old_options,
new_options
->
ServerDNSSearchDomains
||
old_options
->
SafeLogging_
!=
new_options
->
SafeLogging_
||
old_options
->
ClientOnly
!=
new_options
->
ClientOnly
||
server_mode
(
old_options
)
!=
server_mode
(
new_options
)
||
public_server_mode
(
old_options
)
!=
public_server_mode
(
new_options
)
||
!
config_lines_eq
(
old_options
->
Logs
,
new_options
->
Logs
)
||
old_options
->
LogMessageDomains
!=
new_options
->
LogMessageDomains
)
...
...
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