diff options
author | Roger Dingledine <arma@torproject.org> | 2004-05-15 07:21:25 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-05-15 07:21:25 +0000 |
commit | 04bb8c804677f1ba1aa0212e34c19869c853a1e4 (patch) | |
tree | cf8f985ef65fdec95173266b4124a83844aa3f6d /src/or/or.h | |
parent | 09a47485782d6d8183305b217416030e0b0e316a (diff) | |
download | tor-04bb8c804677f1ba1aa0212e34c19869c853a1e4.tar.gz tor-04bb8c804677f1ba1aa0212e34c19869c853a1e4.zip |
bugfix: if a circuit if borderline too old, then count it as too old.
bugfix: we were retrying the same circuit after getting a resolve
failure. so of course the next two tries would fail too. now we try
a new circuit each time (at most three times).
svn:r1867
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h index a8eeca897e..924131cf73 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1149,8 +1149,6 @@ extern unsigned long stats_n_relay_cells_delivered; int circuit_receive_relay_cell(cell_t *cell, circuit_t *circ, int cell_direction); -int circuit_package_relay_cell(cell_t *cell, circuit_t *circ, - int cell_direction, crypt_path_t *layer_hint); void relay_header_pack(char *dest, const relay_header_t *src); void relay_header_unpack(relay_header_t *dest, const char *src); |