mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
prevent picking middleman nodes as the last node in the circuit
svn:r1088
This commit is contained in:
parent
51ca94fef3
commit
1801bd7592
@ -455,7 +455,7 @@ int router_dump_router_to_string(char *s, int maxlen, routerinfo_t *router,
|
||||
return -1;
|
||||
written += result;
|
||||
}
|
||||
if (tmpe->prt_min == 1 && tmpe->prt_max == 65535) {
|
||||
if (tmpe->prt_min == 0 && tmpe->prt_max == 65535) {
|
||||
if (written > maxlen-4)
|
||||
return -1;
|
||||
strcat(s+written, ":*\n");
|
||||
|
@ -955,7 +955,7 @@ static int router_add_exit_policy(routerinfo_t *router,
|
||||
}
|
||||
}
|
||||
if (!port || strcmp(port, "*") == 0) {
|
||||
newe->prt_min = 1;
|
||||
newe->prt_min = 0;
|
||||
newe->prt_max = 65535;
|
||||
} else {
|
||||
endptr = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user