Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mike Perry
Tor
Commits
2c6f2e9b
Commit
2c6f2e9b
authored
Aug 03, 2017
by
George Kadianakis
Committed by
Nick Mathewson
Aug 08, 2017
Browse files
Constify functions that can be constified.
parent
5ca9b830
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/or/hs_circuit.c
View file @
2c6f2e9b
...
...
@@ -214,8 +214,8 @@ count_opened_desc_intro_point_circuits(const hs_service_t *service,
DIGEST256MAP_FOREACH
(
desc
->
intro_points
.
map
,
key
,
const
hs_service_intro_point_t
*
,
ip
)
{
circuit_t
*
circ
;
origin_circuit_t
*
ocirc
=
hs_circ_service_get_intro_circ
(
ip
);
const
circuit_t
*
circ
;
const
origin_circuit_t
*
ocirc
=
hs_circ_service_get_intro_circ
(
ip
);
if
(
ocirc
==
NULL
)
{
continue
;
}
...
...
src/or/hs_service.c
View file @
2c6f2e9b
...
...
@@ -2048,8 +2048,8 @@ update_revision_counters_in_state(void)
* counter. Else set <b>service_found_out</b> to False. */
STATIC
uint64_t
check_state_line_for_service_rev_counter
(
const
char
*
state_line
,
ed25519_public_key_t
*
blinded_pubkey
,
int
*
service_found_out
)
const
ed25519_public_key_t
*
blinded_pubkey
,
int
*
service_found_out
)
{
smartlist_t
*
items
=
NULL
;
int
ok
;
...
...
@@ -2111,7 +2111,7 @@ check_state_line_for_service_rev_counter(const char *state_line,
* service with blinded key <b>blinded_pubkey</b>. If no revision counter is
* found, return 0. */
static
uint64_t
get_rev_counter_for_service
(
ed25519_public_key_t
*
blinded_pubkey
)
get_rev_counter_for_service
(
const
ed25519_public_key_t
*
blinded_pubkey
)
{
or_state_t
*
state
=
get_or_state
();
config_line_t
*
line
;
...
...
src/or/hs_service.h
View file @
2c6f2e9b
...
...
@@ -332,8 +332,8 @@ STATIC void service_descriptor_free(hs_service_descriptor_t *desc);
STATIC
uint64_t
check_state_line_for_service_rev_counter
(
const
char
*
state_line
,
ed25519_public_key_t
*
blinded_pubkey
,
int
*
service_found_out
);
const
ed25519_public_key_t
*
blinded_pubkey
,
int
*
service_found_out
);
#endif
/* TOR_UNIT_TESTS */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment