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
4d5b46aa
Commit
4d5b46aa
authored
8 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/maint-0.3.0'
parents
e79f90c7
ef4c10fb
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/bug21771
+5
-0
5 additions, 0 deletions
changes/bug21771
src/or/entrynodes.c
+4
-2
4 additions, 2 deletions
src/or/entrynodes.c
with
9 additions
and
2 deletions
changes/bug21771
0 → 100644
+
5
−
0
View file @
4d5b46aa
o Minor bugfixes (guard selection):
- Fix a guard selection bug where Tor would refuse to bootstrap in some
cases if the user swapped a bridge for another bridge in their
configuration file.
Fixes bug 21771; bugfix on 0.3.0.1-alpha. Reported by "torvlnt33r".
This diff is collapsed.
Click to expand it.
src/or/entrynodes.c
+
4
−
2
View file @
4d5b46aa
...
...
@@ -989,9 +989,11 @@ get_max_sample_size(guard_selection_t *gs,
const
int
using_bridges
=
(
gs
->
type
==
GS_TYPE_BRIDGE
);
const
int
min_sample
=
get_min_filtered_sample_size
();
/* With bridges, max_sample is "all of them" */
/* If we are in bridge mode, expand our sample set as needed without worrying
* about max size. We should respect the user's wishes to use many bridges if
* that's what they have specified in their configuration file. */
if
(
using_bridges
)
return
n_guards
;
return
INT_MAX
;
const
int
max_sample_by_pct
=
(
int
)(
n_guards
*
get_max_sample_threshold
());
const
int
max_sample_absolute
=
get_max_sample_size_absolute
();
...
...
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