Browse Source

get rid of the __ConsiderAllRoutersAsHidServDirectories config option

svn:r12528
Roger Dingledine 16 years ago
parent
commit
094096d320
3 changed files with 0 additions and 6 deletions
  1. 0 2
      src/or/config.c
  2. 0 2
      src/or/dirserv.c
  3. 0 2
      src/or/or.h

+ 0 - 2
src/or/config.c

@@ -288,8 +288,6 @@ static config_var_t _option_vars[] = {
   VAR("VersioningAuthoritativeDirectory",BOOL,VersioningAuthoritativeDir, "0"),
   V(VirtualAddrNetwork,          STRING,   "127.192.0.0/10"),
   VAR("__AllDirActionsPrivate",  BOOL,  AllDirActionsPrivate,     "0"),
-  /*XXXX020 for testing.  Maybe remove before -rc. */
-  V(__ConsiderAllRoutersAsHidServDirectories, BOOL, "0"),
   VAR("__DisablePredictedCircuits",BOOL,DisablePredictedCircuits, "0"),
   VAR("__LeaveStreamsUnattached",BOOL,  LeaveStreamsUnattached,   "0"),
   /*XXXX020 for testing.  Maybe remove before -rc. */

+ 0 - 2
src/or/dirserv.c

@@ -1909,8 +1909,6 @@ set_routerstatus_from_routerinfo(routerstatus_t *rs,
   }
   rs->is_bad_exit = listbadexits && ri->is_bad_exit;
   ri->is_hs_dir = dirserv_thinks_router_is_hs_dir(ri, now);
-  if (get_options()->__ConsiderAllRoutersAsHidServDirectories)
-    ri->is_hs_dir = 1; /* Override real value. */
   rs->is_hs_dir = ri->is_hs_dir;
   /* 0.1.1.9-alpha is the first version to support fetch by descriptor
    * hash. */

+ 0 - 2
src/or/or.h

@@ -2092,8 +2092,6 @@ typedef struct {
    * them at some point, since I think C says that identifiers beginning with
    * __ are implementation-reserved or something. */
   int __MinUptimeHidServDirectoryV2; /**< Accept hs dirs after what time? */
-  int __ConsiderAllRoutersAsHidServDirectories; /**< Consider all routers as
-                                                 * hidden service dirs? */
   int FetchUselessDescriptors; /**< Do we fetch non-running descriptors too? */
   int AllDirActionsPrivate; /**< Should every directory action be sent
                              * through a Tor circuit? */