aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAge
...
* | | | | Merge remote-tracking branch 'origin/maint-0.2.2'Nick Mathewson2011-08-25
|\ \ \ \ \
| * | | | | Mention that HiddenServiceDir must existSebastian Hahn2011-08-25
* | | | | | manually forward-port 2871dd8befRoger Dingledine2011-08-25
| |/ / / / |/| | | |
* | | | | Merge branch 'bufev_ratelim_and_wm'Nick Mathewson2011-08-24
|\ \ \ \ \
| * | | | | Set write low-watermarks on all bufferevents.•••If we don't do this, then we never invoke the bufferevent write callbacks until all the bufferevent's data is flushed. Nick Mathewson2011-08-24
| * | | | | Add write watermarks to filtered bufferevents.Nick Mathewson2011-08-24
| * | | | | Apply rate-limiting to the lowest bufferevent in the stack.•••When we're doing filtering ssl bufferevents, we want the rate-limits to apply to the lowest level of the bufferevent stack, so that we're actually limiting bytes sent on the network. Otherwise, we'll read from the network aggressively, and only limit stuff as we process it. Nick Mathewson2011-08-24
|/ / / / /
* | | | | Merge remote-tracking branch 'origin/maint-0.2.2'Nick Mathewson2011-08-24
|\| | | |
| * | | | lround() missing in MSVC•••lround() is missing in MS Visual-C's <math.h>. Not available anywhere. Here is an easy patch. Gisle Vanem2011-08-24
* | | | | Disable run-time changes to DisableIOCP: They do not workNick Mathewson2011-08-19
| |_|_|/ |/| | |
* | | | Remove warning about a loop parsing evbuffer socks•••This behavior is normal when we want more data than the evbuffer actually has for us. We'll ask for (say) 7 bytes, get only 5 (because that's all there is), try to parse the 5 bytes, and get told "no, I want 7". One option would be to bail out early whenever want_length is > buflen, but sometimes we use an over-large want_length. So instead, let's just remove the warning here: it's not a bug after all. Nick Mathewson2011-08-18
* | | | Appease "make check-spaces"Nick Mathewson2011-08-18
* | | | Automatically use filtering bufferevents with IOCP.Nick Mathewson2011-08-18
| |_|/ |/| |
* | | Call evthread_use_windows_threads when running with IOCP on windowsNick Mathewson2011-08-17
* | | Use evbuffer_copyout() in inspect_evbuffer().Nick Mathewson2011-08-17
* | | Bufferevents now requires Libevent 2.0.13-stable.•••(Earlier Libevent versions have bufferevent bugs that affect us, and are missing some APIs that it would be handy to use.) Nick Mathewson2011-08-17
* | | Merge remote-tracking branch 'origin/maint-0.2.2'•••Conflicts: src/or/config.c Nick Mathewson2011-08-17
|\| |
| * | Don't write ControlPorts to disk till after we setuid and make datadir•••Fix for bug 3747; bugfix on 0.2.2.26-beta. Nick Mathewson2011-08-17
* | | Merge branch 'bug3743'Nick Mathewson2011-08-17
|\ \ \
| * | | Remove a needless config_find_optionNick Mathewson2011-08-17
| * | | Don't compare LINELIST_S and OBSOLETE config options.Kamran Riaz Khan2011-08-16
* | | | Actually pick a random port when "auto" is specified•••ddc65e2b3303559ab7b842a176ee6c2eda9e4027 had broken this Sebastian Hahn2011-08-17
|/ / /
* | | Merge remote-tracking branch 'asn/bug3728'Nick Mathewson2011-08-15
|\ \ \
| * | | Free global_rate_limit in connection_free_all().George Kadianakis2011-08-13
| * | | Move connection_free_all() to the bottom of connection.c to enjoy maximum vis...George Kadianakis2011-08-13
* | | | Merge remote-tracking branch 'origin/maint-0.2.2'Nick Mathewson2011-08-15
|\ \ \ \ | | |/ / | |/| |
| * | | Remove extra quotation marks around the result of esc_for_logRobert Ransom2011-08-15
* | | | Oops; _actually_ enable microdesc-by-default for clients•••It turns out that it wasn't enough to set the configuration to "auto", since the correct behavior for "auto" had been disabled in microdesc.c. :p (Hasn't been in a release yet, so doesn't need a changes entry.) Nick Mathewson2011-08-15
* | | | Merge remote-tracking branch 'sebastian/bug3700'Nick Mathewson2011-08-11
|\ \ \ \
| * | | | Don't warn on http connection to my orport•••Also remove a few other related warnings that could occur during the ssl handshake. We do this because the relay operator can't do anything about them, and they aren't their fault. Sebastian Hahn2011-08-11
| * | | | Merge branch 'bug3643'Sebastian Hahn2011-08-11
| |\| | |
* | | | | Merge remote-tracking branch 'origin/maint-0.2.2'Nick Mathewson2011-08-11
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / /
| * | | Ignore deprecation warnings on OS X•••Starting with Lion, Apple decided to deprecate the system openssl. We can start requiring users to install their own openssl once OS X doesn't ship with it anymore. Sebastian Hahn2011-08-10
* | | | Whitespace tweaksNick Mathewson2011-08-10
* | | | Fix a const warning in bug1692 codeNick Mathewson2011-08-10
* | | | Merge branch 'bug1692-squashed'Nick Mathewson2011-08-10
|\ \ \ \
| * | | | Fix condition reported by nickm.Kamran Riaz Khan2011-08-10
| * | | | Return if CONF_CHANGED isn't interesting.Kamran Riaz Khan2011-08-10
| * | | | Escape configuration values before sending them via CONF_CHANGED.Kamran Riaz Khan2011-08-10
| * | | | Use smartlist_asprintf_add() to improve readability.Kamran Riaz Khan2011-08-10
| * | | | Add smartlist_[v]asprintf_add•••I should have added this before implementing #2411. Robert Ransom2011-08-10
| * | | | Minor code readability fix.Kamran Riaz Khan2011-08-09
| * | | | Add changes file.Kamran Riaz Khan2011-08-09
| * | | | Minor comment fix.Kamran Riaz Khan2011-08-08
| * | | | Refactor to do CONF_CHANGED event formatting inside control.cKamran Riaz Khan2011-08-08
| * | | | Emits CONF_CHANGED events whenever Tor's configuration values change.Kamran Riaz Khan2011-08-08
* | | | | Make FooPort 0 correctly disable the FooPort.•••Since the prop171 stuff, it had instead made Tor bind port 0, and re-bind it differently all the time. Resolves bug3704; not in any released version. Nick Mathewson2011-08-09
* | | | | Sticking a size_t into long generates a warn on winSebastian Hahn2011-08-09
* | | | | Get rid of an unused parameter warning on winSebastian Hahn2011-08-09
* | | | | Sockets are unsigned on windows•••this gets rid of a warning about signed/unsigned comparison Sebastian Hahn2011-08-09
| |_|/ / |/| | |