aboutsummaryrefslogtreecommitdiff
path: root/src/or/or.h
Commit message (Expand)AuthorAge
...
| * | Split the circuit timeout and close codepaths.•••We need to record different statistics at point of timeout, vs the point of forcible closing. Also, give some better names to constants and state file variables to indicate they are not dealing with timeouts, but abandoned circuits. Mike Perry2010-06-15
| * | Fix initialization and reset issues with close_ms.•••Also clean up some log messages. Mike Perry2010-06-15
| * | Keep circuits open until the greater of 95th CDF percentile or 60s.•••This is done to provide better data to our right-censored Pareto model. We do this by simply marking them with a new purpose. Mike Perry2010-06-09
| * | Make the Xm mode selection a consensus parameter.Mike Perry2010-06-09
| * | Add timeout count state variable.Mike Perry2010-06-09
| * | Remove synthetic timeout code in favor of better Pareto model.Mike Perry2010-06-09
| * | Arma hates (\d+). Remove mine and some others.Mike Perry2010-06-09
| * | Fix comments from Sebastian + Nick's code review.•••Check for overflow in one place, and be consistent about type usage. Mike Perry2010-05-10
| * | Bug 1296: Add option+logic to disable CBT learning.•••There are now four ways that CBT can be disabled: 1. Network-wide, with the cbtdisabled consensus param. 2. Via config, with "LearnCircuitBuildTimeout 0" 3. Via config, with "AuthoritativeDirectory 1" 4. Via a state file write failure. Mike Perry2010-05-10
| * | Bug 1357: Store the suspended timeout value to resume.•••This prevents a spurious warning where we have a timeout just after deciding our network came back online. Mike Perry2010-05-10
| * | Add consensus parameter for max synthetic quantile.•••In case we decide that the timeout rate is now too high due to our change of the max synthetic quantile value, this consensus parameter will allow us to restore it to the previous value. Mike Perry2010-05-10
| * | Add a TIMEOUT_RATE keyword to buildtimeout event.Mike Perry2010-05-10
| * | Bug 1335: Implement filtering step to remove+prevent high timeouts.•••This is for the other issue we saw in Bug 1335. A large number of high timeouts were causing the timeout calculation to slowly drift upwards, especially in conditions of load. This fix repeatedly regenerates all of our synthetic timeouts whenever the timeout changes, to try to prevent drift. It also lowers the timeout cap to help for some cases of Bug 1245, where some timeout values were so large that we ended up allocating a ton of scratch memory to count the histogram bins. The downside is that lowering this cap is affecting our timeout rate. Unfortunately, the buildtimeout quantile is now higher than the actual completion rate by what appears to be about 7-10%, which probably represents the skew in the distribution due to lowering this synthetic cap. Mike Perry2010-05-10
| * | Bug 1335: Alter Xm calculation to be weighted avg of top N=3 modes.•••In my state files, I was seeing several peaks, probably due to different guards having different latency. This change is meant to better capture this behavior and generate more reasonable timeouts when it happens. It is improving the timeout values for my collection of state files. Mike Perry2010-05-10
* | | Add option to not warn when getting an IP instead of hostnameSebastian Hahn2010-06-07
* | | Let bridge users use the non-primary address of a multi-homed bridgeRoger Dingledine2010-06-03
* | | Port Tor to work on Windows CE•••Most of the changes here are switches to use APIs available on Windows CE. The most pervasive change is that Windows CE only provides the wide-character ("FooW") variants of most of the windows function, and doesn't support the older ASCII verions at all. This patch will require use of the wcecompat library to get working versions of the posix-style fd-based file IO functions. [commit message by nickm] valerino2010-05-24
|/ /
* | Merge branch 'maint-0.2.1'Roger Dingledine2010-04-23
|\|
| * finally get rid of "clique mode"Roger Dingledine2010-04-23
| * close idle dir-fetch circs earlyRoger Dingledine2010-04-23
* | finally get rid of "clique mode"Roger Dingledine2010-04-21
* | stop authority reachability check on startupRoger Dingledine2010-04-21
* | immediate reachability check for new relaysRoger Dingledine2010-04-21
* | fetch unknown descriptors if we see them in a voteRoger Dingledine2010-04-20
* | Move the declaration of bandwidth_rate_rule_to_string•••It's natural for the definition of bandwidth_rule_t to be with the functions that actually care about its values. Unfortunately, this means declaring bandwidth_rate_rule_to_string() out of sequence. Someday we'll just rename reasons.c to strings.c, and put it at the end of or.h, and this will all be better. Nick Mathewson2010-04-19
* | Log bandwidth_weight_rule_t as a string, not an integer.•••I'm adding this because I can never remember what stuff like 'rule 3' means. That's the one where if somebody goes limp or taps out, the fight is over, right? Nick Mathewson2010-04-12
* | let people test the RefuseUnknownExits ideaRoger Dingledine2010-03-10
* | Merge remote branch 'origin/maint-0.2.1'•••Conflicts: src/common/test.h src/or/test.c Nick Mathewson2010-02-27
|\|
| * Update Tor Project copyright yearsNick Mathewson2010-02-27
* | Merge remote branch 'origin/maint-0.2.1'•••Conflicts: ChangeLog src/or/routerparse.c Nick Mathewson2010-02-27
|\|
| * Properly handle non-terminated strings•••Treat strings returned from signed_descriptor_get_body_impl() as not NUL-terminated. Since the length of the strings is available, this is not a big problem. Discovered by rieo. Sebastian Hahn2010-02-27
| * read the "circwindow" parameter from the consensus•••backport of c43859c5c12361fad505 backport of 0d13e0ed145f4c1b5bd1 Roger Dingledine2009-10-14
| * Code to parse and access network parameters.•••Partial backport of 381766ce4b1145460. Partial backport of 56c6d78520a98fb64. Nick Mathewson2009-10-14
* | Implement bw weighting selection algorithm.Mike Perry2010-02-22
* | Add parsing+verification for bw weight values.Mike Perry2010-02-22
* | Perform calculation of consensus bandwidth weights.•••Also add bwweightscale consensus param. Use it as our fixed-point calculation width. Mike Perry2010-02-22
* | Move CBT params into consensus.Mike Perry2010-02-18
* | Add BUILDTIMEOUT_SET event for CBT stress testing.Mike Perry2010-02-18
* | Fix a memory corruption bug while collecting bridge stats•••We accidentally freed the internal buffer for bridge stats when we were writing the bridge stats file or honoring a control port request for said data. Change the interfaces for geoip_get_bridge_stats* to prevent these problems, and remove the offending free/add a tor_strdup. Fixes bug 1208. Karsten Loesing2010-01-26
* | add config options to override.•••somebody should add man page entries. Roger Dingledine2009-12-29
* | add separate per-conn write limitingRoger Dingledine2009-12-29
* | Remove some old, commented out codeSebastian Hahn2009-12-25
* | fix compileRoger Dingledine2009-12-21
* | Be more willing to use an unsuitable circuit for exit.•••Specifically, there are two cases: a) are we willing to start a new circuit at a node not in your ExitNodes config option, and b) are we willing to make use of a circuit that's already established but has an unsuitable exit. Now we discard all your circuits when you set ExitNodes, so the only way you could end up with an exit circuit that ends at an unsuitable place is if we explicitly ran out of exit nodes, StrictNodes was 0, and we built this circuit to solve a stream that needs solving. Fixes bug in dc322931, which would ignore the just-built circuit because it has an unsuitable exit. Roger Dingledine2009-12-21
* | Make EntryNodes config option much more aggressive.•••Before it would prepend your requested entrynodes to your list of guard nodes, but feel free to use others after that. Now it chooses only from your EntryNodes if any of those are available, and only falls back to others if a) they're all down and b) StrictNodes is not set. Also, now we refresh your entry guards from EntryNode at each consensus fetch (rather than just at startup and then they slowly rot as the network changes). The goal here is to make users less likely to set StrictNodes, since it's doing closer to what they expect it should be doing. Roger Dingledine2009-12-21
* | Switch to a StrictNodes config option.•••This is step one of handling ExcludedNodes better. This first step is just to make EntryNodes and ExitNodes do what they did before. Roger Dingledine2009-12-21
* | fix some typosRoger Dingledine2009-12-19
* | Merge branch 'ewma'Nick Mathewson2009-12-18
|\ \
| * | Change interface for configuring cell ewma algorithm.•••The rule is now: take the value from the CircuitPriorityHalflife config option if it is set. If it zero, disable the cell_ewma algorithm. If it is set, use it to calculate the scaling factor. If it is not set, look for a CircPriorityHalflifeMsec parameter in the consensus networkstatus. If *that* is zero, then disable the cell_ewma algorithm; if it is set, use it to calculate the scaling factor. If it is not set at all, disable the algorithm. Nick Mathewson2009-12-15
| * | Fix various comment typos in ewma patch; found by arma.Nick Mathewson2009-12-15