浏览代码

r18195@catbus: nickm | 2008-02-19 14:11:15 -0500
TOR_PERF has not not been a sane thing for ages. Remove it.


svn:r13579

Nick Mathewson 18 年之前
父节点
当前提交
b98c437fcc
共有 2 个文件被更改,包括 1 次插入13 次删除
  1. 1 4
      src/or/circuitbuild.c
  2. 0 9
      src/or/or.h

+ 1 - 4
src/or/circuitbuild.c

@@ -1039,15 +1039,12 @@ new_route_len(uint8_t purpose, extend_info_t *exit,
 
 
   tor_assert(routers);
   tor_assert(routers);
 
 
-#ifdef TOR_PERF
-  routelen = 2;
-#else
   routelen = 3;
   routelen = 3;
   if (exit &&
   if (exit &&
       purpose != CIRCUIT_PURPOSE_TESTING &&
       purpose != CIRCUIT_PURPOSE_TESTING &&
       purpose != CIRCUIT_PURPOSE_S_ESTABLISH_INTRO)
       purpose != CIRCUIT_PURPOSE_S_ESTABLISH_INTRO)
     routelen++;
     routelen++;
-#endif
+
   log_debug(LD_CIRC,"Chosen route length %d (%d routers available).",
   log_debug(LD_CIRC,"Chosen route length %d (%d routers available).",
             routelen, smartlist_len(routers));
             routelen, smartlist_len(routers));
 
 

+ 0 - 9
src/or/or.h

@@ -647,14 +647,6 @@ typedef enum {
 #define CELL_DIRECTION_IN 1
 #define CELL_DIRECTION_IN 1
 #define CELL_DIRECTION_OUT 2
 #define CELL_DIRECTION_OUT 2
 
 
-#ifdef TOR_PERF
-/* These options are here for internal testing on a separate network. If
- * you enable them, you won't be compatible with the main Tor network. */
-#define CIRCWINDOW_START 10000
-#define CIRCWINDOW_INCREMENT 1000
-#define STREAMWINDOW_START 5000
-#define STREAMWINDOW_INCREMENT 500
-#else
 /** Initial value for both sides of a circuit transmission window when the
 /** Initial value for both sides of a circuit transmission window when the
  * circuit is initialized.  Measured in cells. */
  * circuit is initialized.  Measured in cells. */
 #define CIRCWINDOW_START 1000
 #define CIRCWINDOW_START 1000
@@ -665,7 +657,6 @@ typedef enum {
 #define STREAMWINDOW_START 500
 #define STREAMWINDOW_START 500
 /** Amount to increment a stream window when we get a stream SENDME. */
 /** Amount to increment a stream window when we get a stream SENDME. */
 #define STREAMWINDOW_INCREMENT 50
 #define STREAMWINDOW_INCREMENT 50
-#endif
 
 
 /* cell commands */
 /* cell commands */
 #define CELL_PADDING 0
 #define CELL_PADDING 0