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
56c6d785
Commit
56c6d785
authored
15 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
Parameter access function, with unit tests.
parent
d9872cc6
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/networkstatus.c
+26
-0
26 additions, 0 deletions
src/or/networkstatus.c
src/or/or.h
+2
-0
2 additions, 0 deletions
src/or/or.h
src/or/test.c
+3
-0
3 additions, 0 deletions
src/or/test.c
with
31 additions
and
0 deletions
src/or/networkstatus.c
+
26
−
0
View file @
56c6d785
...
...
@@ -1893,6 +1893,32 @@ networkstatus_dump_bridge_status_to_file(time_t now)
tor_free
(
status
);
}
/** Return the value of a integer parameter from the networkstatus <b>ns</b>
* whose name is <b>param_name</b>. Return <b>default_val</b> if ns is NULL,
* or if it has no parameter called <b>param_name</b>. */
int32_t
networkstatus_get_param
(
networkstatus_t
*
ns
,
const
char
*
param_name
,
int32_t
default_val
)
{
size_t
name_len
;
if
(
!
ns
||
!
ns
->
net_params
)
return
default_val
;
name_len
=
strlen
(
param_name
);
SMARTLIST_FOREACH_BEGIN
(
ns
->
net_params
,
const
char
*
,
p
)
{
if
(
!
strcmpstart
(
p
,
param_name
)
&&
p
[
name_len
]
==
'='
)
{
int
ok
=
0
;
long
v
=
tor_parse_long
(
p
+
name_len
+
1
,
10
,
INT32_MIN
,
INT32_MAX
,
&
ok
,
NULL
);
if
(
ok
)
return
(
int32_t
)
v
;
}
}
SMARTLIST_FOREACH_END
(
p
);
return
default_val
;
}
/** If <b>question</b> is a string beginning with "ns/" in a format the
* control interface expects for a GETINFO question, set *<b>answer</b> to a
* newly-allocated string containing networkstatus lines for the appropriate
...
...
This diff is collapsed.
Click to expand it.
src/or/or.h
+
2
−
0
View file @
56c6d785
...
...
@@ -3960,6 +3960,8 @@ void signed_descs_update_status_from_consensus_networkstatus(
char
*
networkstatus_getinfo_helper_single
(
routerstatus_t
*
rs
);
char
*
networkstatus_getinfo_by_purpose
(
const
char
*
purpose_string
,
time_t
now
);
void
networkstatus_dump_bridge_status_to_file
(
time_t
now
);
int32_t
networkstatus_get_param
(
networkstatus_t
*
ns
,
const
char
*
param_name
,
int32_t
default_val
);
int
getinfo_helper_networkstatus
(
control_connection_t
*
conn
,
const
char
*
question
,
char
**
answer
);
void
networkstatus_free_all
(
void
);
...
...
This diff is collapsed.
Click to expand it.
src/or/test.c
+
3
−
0
View file @
56c6d785
...
...
@@ -3381,6 +3381,9 @@ test_dirutil_param_voting(void)
"abcd=20 c=60 cw=500 x-yz=-9 zzzzz=101"
,
NULL
,
0
,
0
);
smartlist_split_string
(
vote4
.
net_params
,
"ab=900 abcd=200 c=1 cw=51 x-yz=100"
,
NULL
,
0
,
0
);
test_eq
(
100
,
networkstatus_get_param
(
&
vote4
,
"x-yz"
,
50
));
test_eq
(
222
,
networkstatus_get_param
(
&
vote4
,
"foobar"
,
222
));
smartlist_add
(
votes
,
&
vote1
);
smartlist_add
(
votes
,
&
vote2
);
smartlist_add
(
votes
,
&
vote3
);
...
...
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