]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
it's safe to do parallel directory fetches/uploads
authorRoger Dingledine <arma@torproject.org>
Mon, 22 Sep 2003 06:22:00 +0000 (06:22 +0000)
committerRoger Dingledine <arma@torproject.org>
Mon, 22 Sep 2003 06:22:00 +0000 (06:22 +0000)
svn:r477

src/or/directory.c

index d56898b6780e526dfd5b91ed23cfc3fd34ce716e..b55a4194090249179e21a7c451d656cff512bb2f 100644 (file)
@@ -30,10 +30,13 @@ void directory_initiate_command(routerinfo_t *router, int command) {
   if(!router) /* i guess they didn't have one in mind for me to use */
     return;
 
+#if 0 /* there's no problem with parallel get/posts now. whichever 'get' ends
+         last is the directory. */
   if(connection_get_by_type(CONN_TYPE_DIR)) { /* there's already a dir conn running */
     log_fn(LOG_DEBUG,"Canceling connect, dir conn already active.");
     return;
   }
+#endif
 
   if(command == DIR_CONN_STATE_CONNECTING_FETCH)
     log_fn(LOG_DEBUG,"initiating directory fetch");