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
56902845
Commit
56902845
authored
10 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
Fix wide lines, make entry_is_live() non-inline
parent
368ff229
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/or/entrynodes.c
+3
-2
3 additions, 2 deletions
src/or/entrynodes.c
src/or/entrynodes.h
+3
-3
3 additions, 3 deletions
src/or/entrynodes.h
src/test/test_entrynodes.c
+3
-1
3 additions, 1 deletion
src/test/test_entrynodes.c
with
9 additions
and
6 deletions
src/or/entrynodes.c
+
3
−
2
View file @
56902845
...
...
@@ -190,8 +190,9 @@ entry_is_time_to_retry(const entry_guard_t *e, time_t now)
* If need_descriptor is true, only return the node if we currently have
* a descriptor (routerinfo or microdesc) for it.
*/
STATIC
INLINE
const
node_t
*
entry_is_live
(
const
entry_guard_t
*
e
,
entry_is_live_flags_t
flags
,
const
char
**
msg
)
STATIC
const
node_t
*
entry_is_live
(
const
entry_guard_t
*
e
,
entry_is_live_flags_t
flags
,
const
char
**
msg
)
{
const
node_t
*
node
;
const
or_options_t
*
options
=
get_options
();
...
...
This diff is collapsed.
Click to expand it.
src/or/entrynodes.h
+
3
−
3
View file @
56902845
...
...
@@ -101,9 +101,9 @@ typedef enum {
ENTRY_NEED_DESCRIPTOR
=
1
<<
3
,
}
entry_is_live_flags_t
;
STATIC
INLINE
const
node_t
*
entry_is_live
(
const
entry_guard_t
*
e
,
entry_is_live_flags_t
flags
,
const
char
**
msg
);
STATIC
const
node_t
*
entry_is_live
(
const
entry_guard_t
*
e
,
entry_is_live_flags_t
flags
,
const
char
**
msg
);
#endif
void
remove_all_entry_guards
(
void
);
...
...
This diff is collapsed.
Click to expand it.
src/test/test_entrynodes.c
+
3
−
1
View file @
56902845
...
...
@@ -553,6 +553,7 @@ test_entry_is_live(void *arg)
const
node_t
*
test_node
=
NULL
;
const
entry_guard_t
*
test_entry
=
NULL
;
const
char
*
msg
;
int
which_node
;
(
void
)
arg
;
...
...
@@ -576,7 +577,8 @@ test_entry_is_live(void *arg)
tt_int_op
(
smartlist_len
(
all_entry_guards
),
==
,
NUMBER_OF_DESCRIPTORS
);
/* Now get a random test entry that we will use for this unit test. */
test_entry
=
smartlist_get
(
all_entry_guards
,
3
);
/* chosen by fair dice roll */
which_node
=
3
;
/* (chosen by fair dice roll) */
test_entry
=
smartlist_get
(
all_entry_guards
,
which_node
);
/* Let's do some entry_is_live() tests! */
...
...
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