diff options
author | Roger Dingledine <arma@torproject.org> | 2003-12-13 07:01:46 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-12-13 07:01:46 +0000 |
commit | 9e6f4a30296815aab99393218c75b44d1aca25e4 (patch) | |
tree | 32079c3b86579348d8a92ebfe6f26bb9c75f0b15 /src/or/test.c | |
parent | 5458ca39e8fd0ef582f3ed690fa589e44daf5c6b (diff) | |
download | tor-9e6f4a30296815aab99393218c75b44d1aca25e4.tar.gz tor-9e6f4a30296815aab99393218c75b44d1aca25e4.zip |
revamp circuit node selection to use smartlists:
* now we know for sure if an acceptable node is available; we
don't have to keep guessing and checking
* we try options.EntryNodes first for picking the first node
svn:r904
Diffstat (limited to 'src/or/test.c')
-rw-r--r-- | src/or/test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/test.c b/src/or/test.c index 939783cac9..a4c03e2c45 100644 --- a/src/or/test.c +++ b/src/or/test.c @@ -465,6 +465,7 @@ test_util() { } void test_onion() { +#if 0 char **names; int i,num; @@ -477,6 +478,7 @@ void test_onion() { for(i=0;i<num;i++) tor_free(names[i]); tor_free(names); +#endif } void |