mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
bugfix: When testing reachability of our dirport, don't launch a new
test if there's already one in progress. svn:r8604
This commit is contained in:
parent
e8fa65e5f3
commit
baf208d7b3
@ -85,6 +85,8 @@ Changes in version 0.1.2.2-alpha - 2006-10-??
|
|||||||
Previously, the server would give them no answer at all.
|
Previously, the server would give them no answer at all.
|
||||||
|
|
||||||
o Minor Bugfixes:
|
o Minor Bugfixes:
|
||||||
|
- When testing reachability of our dirport, don't launch a new
|
||||||
|
test if there's already one in progress.
|
||||||
- Two small performance improvements on parsing descriptors.
|
- Two small performance improvements on parsing descriptors.
|
||||||
- We were building exactly the wrong circuits when we anticipated
|
- We were building exactly the wrong circuits when we anticipated
|
||||||
hidden service requirements, meaning Tor would have to build all
|
hidden service requirements, meaning Tor would have to build all
|
||||||
|
@ -452,7 +452,10 @@ consider_testing_reachability(int test_or, int test_dir)
|
|||||||
circuit_launch_by_router(CIRCUIT_PURPOSE_TESTING, me, 0, 1, 1);
|
circuit_launch_by_router(CIRCUIT_PURPOSE_TESTING, me, 0, 1, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (test_dir && !check_whether_dirport_reachable()) {
|
if (test_dir && !check_whether_dirport_reachable() &&
|
||||||
|
!connection_get_by_type_addr_port_purpose(
|
||||||
|
CONN_TYPE_DIR, me->addr, me->dir_port,
|
||||||
|
DIR_PURPOSE_FETCH_SERVERDESC)) {
|
||||||
/* ask myself, via tor, for my server descriptor. */
|
/* ask myself, via tor, for my server descriptor. */
|
||||||
directory_initiate_command_router(me, DIR_PURPOSE_FETCH_SERVERDESC,
|
directory_initiate_command_router(me, DIR_PURPOSE_FETCH_SERVERDESC,
|
||||||
1, "authority", NULL, 0);
|
1, "authority", NULL, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user