Skip to content
Snippets Groups Projects
Commit 79cdf81e authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Increase the limit so leaky pipe might work

parent 418c2845
No related branches found
No related tags found
No related merge requests found
......@@ -822,9 +822,10 @@ typedef enum {
/** Maximum number of queued cells on a circuit for which we are the
* midpoint before we give up and kill it. This must be >= circwindow
* to avoid killing innocent circuits.
* to avoid killing innocent circuits, and >= circwindow*2 to give
* leaky-pipe a chance for being useful someday.
*/
#define ORCIRC_MAX_MIDDLE_CELLS (11*(CIRCWINDOW_START_MAX)/10)
#define ORCIRC_MAX_MIDDLE_CELLS (21*(CIRCWINDOW_START_MAX)/10)
/* Cell commands. These values are defined in tor-spec.txt. */
#define CELL_PADDING 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment