Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Benjamin J. Thompson
Tor
Commits
0ad2fd11
Commit
0ad2fd11
authored
18 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
r9467@Kushana: nickm | 2006-11-01 18:51:16 -0500
Allow larger amounts of drift in uptime to be "cosmetic". svn:r8891
parent
5d7ca19b
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
ChangeLog
+4
-0
4 additions, 0 deletions
ChangeLog
src/or/routerlist.c
+7
-4
7 additions, 4 deletions
src/or/routerlist.c
with
11 additions
and
4 deletions
ChangeLog
+
4
−
0
View file @
0ad2fd11
...
...
@@ -5,6 +5,10 @@ Changes in version 0.1.2.4-alpha - 2006-11-??
o Minor bugfixes
- Don't log spurious warnings when we see a circuit close reason we
don't recognize; it's probably just from a newer version of Tor.
- Have directory authorities allow larger amounts of drift in uptime
without replacing the server descriptor: previously, a server that
restarted every 30 minutes could have 48 "interesting" descriptors per
day.
Changes in version 0.1.2.3-alpha - 2006-10-29
o Minor features:
...
...
This diff is collapsed.
Click to expand it.
src/or/routerlist.c
+
7
−
4
View file @
0ad2fd11
...
...
@@ -4048,7 +4048,7 @@ router_reset_descriptor_download_failures(void)
#define ROUTER_MAX_COSMETIC_TIME_DIFFERENCE (12*60*60)
/** We allow uptime to vary from how much it ought to be by this much. */
#define ROUTER_ALLOW_UPTIME_DRIFT (
3
0*60)
#define ROUTER_ALLOW_UPTIME_DRIFT (
6*6
0*60)
/** Return true iff the only differences between r1 and r2 are such that
* would not cause a recent (post 0.1.1.6) dirserver to republish.
...
...
@@ -4057,6 +4057,7 @@ int
router_differences_are_cosmetic
(
routerinfo_t
*
r1
,
routerinfo_t
*
r2
)
{
time_t
r1pub
,
r2pub
;
int
time_difference
;
tor_assert
(
r1
&&
r2
);
/* r1 should be the one that was published first. */
...
...
@@ -4107,11 +4108,13 @@ router_differences_are_cosmetic(routerinfo_t *r1, routerinfo_t *r2)
return
0
;
/* Did uptime fail to increase by approximately the amount we would think,
* give or take
30 minute
s? */
* give or take
4 hour
s? */
r1pub
=
r1
->
cache_info
.
published_on
;
r2pub
=
r2
->
cache_info
.
published_on
;
if
(
abs
(
r2
->
uptime
-
(
r1
->
uptime
+
(
r2pub
-
r1pub
)))
>
ROUTER_ALLOW_UPTIME_DRIFT
)
time_difference
=
abs
(
r2
->
uptime
-
(
r1
->
uptime
+
(
r2pub
-
r1pub
)));
if
(
time_difference
>
ROUTER_ALLOW_UPTIME_DRIFT
&&
time_difference
>
r1
->
uptime
*
.
05
&&
time_difference
>
r2
->
uptime
*
.
05
)
return
0
;
/* Otherwise, the difference is cosmetic. */
...
...
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