diff options
author | Roger Dingledine <arma@torproject.org> | 2003-05-05 23:24:46 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-05-05 23:24:46 +0000 |
commit | d7f50337c14ca42d991e44ab203b1c34591b3eb3 (patch) | |
tree | 246aae88a138b167453ba223efe86238f8ee75ce /src/or/main.c | |
parent | 44b4efe34d4f6bd6a39703c065a075cb9ddb4656 (diff) | |
download | tor-d7f50337c14ca42d991e44ab203b1c34591b3eb3.tar tor-d7f50337c14ca42d991e44ab203b1c34591b3eb3.tar.gz |
incremental path building in; uses ephemeral DH; onions are gone
still need to change circuit-level sendmes
svn:r264
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/or/main.c b/src/or/main.c index 591d568fc..4201c9d29 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -337,7 +337,6 @@ int prepare_for_poll(int *timeout) { for(i=0;i<nfds;i++) { tmpconn = connection_array[i]; connection_increment_receiver_bucket(tmpconn); - connection_array[i]->onions_handled_this_second = 0; /* check connections to see whether we should send a keepalive, expire, or wait */ if(!connection_speaks_cells(tmpconn)) @@ -683,7 +682,6 @@ int tor_main(int argc, char *argv[]) { } } - init_tracked_tree(); /* initialize the replay detection tree */ init_cache_tree(); /* initialize the dns resolve tree */ signal (SIGINT, catch); /* catch kills so we can exit cleanly */ |