aboutsummaryrefslogtreecommitdiff
path: root/src/or
Commit message (Expand)AuthorAge
...
| * | Bump timeout calculation message to notice when timeout changes.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
* | | Group in torrc is obsolete, so stop checking itRoger Dingledine2010-06-27
* | | Use Libevent 2.0's periodic timers where available.•••These timers behave better with non-monotonic clocks than our old ones, and also try harder to make once-per-second events get called one second apart, rather than one-plus-epsilon seconds apart. This fixes bug 943 for everybody using Libevent 2.0 or later. Nick Mathewson2010-06-25
| |/ |/|
* | Remove the extra space that is sent in certain STREAM messages from the contr...Kat Magic2010-06-22
* | Answer question from Roger.Nick Mathewson2010-06-14
* | a line that's been sitting in my sandbox for monthsRoger Dingledine2010-06-14
* | Merge commit 'sebastian/hostnamewarn'Nick Mathewson2010-06-11
|\ \
| * | Add option to not warn when getting an IP instead of hostnameSebastian Hahn2010-06-07
* | | Merge commit 'origin/maint-0.2.1'Nick Mathewson2010-06-11
|\ \ \
| * | | Add maatuska as eighth v3 directory authority.Karsten Loesing2010-06-11
* | | | Don't crash when reading cached*consensus files on startup•••Fixes bug 1352 Sebastian Hahn2010-06-10
| |/ / |/| |
* | | Don't cannibalize one-hop circuits•••In rare cases, we could cannibalize a one-hop circuit, ending up with a two-hop circuit. This circuit would not be actually used, but we should prevent its creation in the first place. Thanks to outofwords and swissknife for helping to analyse this. Sebastian Hahn2010-06-04
* | | Let bridge users use the non-primary address of a multi-homed bridgeRoger Dingledine2010-06-03
* | | moved wince related includes and defs to compat.h where possible, removed unu...valerino2010-05-24
* | | 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
* | | Log the correct address when purging a mismatchd DNS cache addressvalerino2010-05-20
* | | Don't use "try" as an identifier•••C allows try, but some windows CE headers like to redefine 'try' to be a reserved word. valerino2010-05-20
* | | Make rotate_request_period use BEGIN/END versions of FOREACH•••This appeases some versions of MSVC, which don't like it when you have preprocessor commands inside a set of macro arguments. Nick Mathewson2010-05-17
* | | Clarify 'marking connection as too old' messages•••Back when we changed the idea of a connection being "too old" for new circuits into the connection being "bad" for new circuits, we didn't actually change the info messages. This led to telling the user that we were labelling connections as "too old" for being worse than connections that were actually older than them. Found by Scott on or-talk. Nick Mathewson2010-05-12
| |/ |/|
* | Merge branch 'maint-0.2.1'Roger Dingledine2010-04-23
|\|
| * close idle tls conns earlyRoger Dingledine2010-04-23
* | 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
| * testsuite: Prevent the main thread from starving the worker threadsPeter Palfrader2010-04-12
| * testsuite: Only free the main mutex when and if all the worker threads are donePeter Palfrader2010-04-12
* | 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
* | more logging when tracking missing descriptorsRoger Dingledine2010-04-20
* | fetch descriptors from the authority that told us about themRoger Dingledine2010-04-20
* | fetch unknown descriptors if we see them in a voteRoger Dingledine2010-04-20
* | minor cleanupsRoger Dingledine2010-04-20
* | Switch geoip_get_request_history to asprintf; fix bug 1365Nick Mathewson2010-04-20
* | fix "Got a certificate for ?? that we already have"•••what's happening here is that we're fetching certs for obsolete authorities -- probably legacy signers in this case. but try to remain general in the log message. Roger Dingledine2010-04-19
* | 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
* | parameterize update_consensus_router_descriptor_downloadsRoger Dingledine2010-04-19
* | simplify a path in networkstatusRoger Dingledine2010-04-15
* | Add --enable-static-zlib option•••Works like the --enable-static-openssl/libevent options. Requires --with-zlib-dir to be set. Note that other dependencies might still pull in a dynamicly linked zlib, if you don't link them in statically too. Sebastian Hahn2010-04-14
* | Merge branch 'correct_halflife'Nick Mathewson2010-04-13
|\ \
| * | Rename CircPriorityHalflifeMsec to CircuitPriorityHalflifeMsec•••Everything that accepted the 'Circ' name handled it wrong, so even now that we fixed the handling of the parameter, we wouldn't be able to set it without making all the 0.2.2.7..0.2.2.10 relays act wonky. This patch makes Tors accept the 'Circuit' name instead, so we can turn on circuit priorities without confusing the versions that treated the 'Circ' name as occasion to act weird. Nick Mathewson2010-04-13
| * | Fix a bug in reading CircPriorityHalflife from consensus•••When you mean (a=b(c,d)) >= 0, you had better not say (a=b(c,d)>=0). We did the latter, and so whenever CircPriorityHalflife was in the consensus, it was treated as having a value of 1 msec (that is, boolean true). Nick Mathewson2010-04-12
* | | 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
|/ /
* | Merge branch 'maint-0.2.1'•••Conflicts: ChangeLog configure.in contrib/tor-mingw.nsi.in src/win32/orconfig.h Roger Dingledine2010-04-03
|\|
| * fetch relay descriptors from v3 authoritiesRoger Dingledine2010-04-03
* | Fix a segfault when a client is hup'd.•••We need to make sure we have an event_base in dns.c before we call anything that wants one. Make sure we always have one in dns_reset() when we're a client. Fixes bug 1341. Sebastian Hahn2010-04-03