mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-23 06:35:28 +01:00
Mar 24 08:43:30.014 [debug] circuit_find_to_cannibalize(): Hunting for
a circ to cannibalize: purpose 5, uptime 0, capacity 4, internal 0 svn:r14166
This commit is contained in:
parent
901e2ad04b
commit
9047361007
1 changed files with 3 additions and 3 deletions
|
@ -814,9 +814,9 @@ circuit_find_to_cannibalize(uint8_t purpose, extend_info_t *info,
|
|||
|
||||
circuit_t *_circ;
|
||||
origin_circuit_t *best=NULL;
|
||||
int need_uptime = flags & CIRCLAUNCH_NEED_UPTIME;
|
||||
int need_capacity = flags & CIRCLAUNCH_NEED_CAPACITY;
|
||||
int internal = flags & CIRCLAUNCH_IS_INTERNAL;
|
||||
int need_uptime = (flags & CIRCLAUNCH_NEED_UPTIME) != 0;
|
||||
int need_capacity = (flags & CIRCLAUNCH_NEED_CAPACITY) != 0;
|
||||
int internal = (flags & CIRCLAUNCH_IS_INTERNAL) != 0;
|
||||
|
||||
log_debug(LD_CIRC,
|
||||
"Hunting for a circ to cannibalize: purpose %d, uptime %d, "
|
||||
|
|
Loading…
Add table
Reference in a new issue