aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAge
* Improve comments and fix one bugSteven Murdoch2011-08-24
* We don't need to find our own path, just tell Windows to searchSteven Murdoch2011-08-24
* Find test-child.exe by looking in same directory as test.exeSteven Murdoch2011-08-24
* Fix compilation errors under *nixSteven Murdoch2011-08-23
* Fix test cases to handle MSYS style paths (/c/foo rather than c:/foo)•••Also fix test case to expect 1 on successfully spawning a subprocess Steven Murdoch2011-08-22
* Tidy up subprocess code•••- Better error handling - Write description of functions - Don't assume non-negative process return values Steven Murdoch2011-08-22
* Fix some compiler warningsSteven Murdoch2011-08-22
* Revert change to libminiupnpc search path•••This was supposed to fix an oddity with library searching in autoconf but it didn't actually fix anything. Steven Murdoch2011-08-22
* Merge branch 'bug1983-port-tor-fw-helper-to-windows' into bug2046•••Conflicts: configure.in src/tools/tor-fw-helper/Makefile.am src/tools/tor-fw-helper/tor-fw-helper-upnp.c src/tools/tor-fw-helper/tor-fw-helper.c Steven Murdoch2011-08-22
|\
| * Correct reference to libiphlpapi from libiphlapiSteven Murdoch2011-08-22
| * Appease "make check spaces"Steven Murdoch2011-08-22
| * Only link ws2_32 and iphlapi on windows.•••This is a tweak for the tor-fw-helper port to windows. Nick Mathewson2011-08-19
| * Link and build tor-fw-helper on Windows•••- Update configure script to test for libminiupnpc along with the libws2_32 and libiphlpapi libraries required by libminiupnpc - When building tor-fw-helper, link in libiphlpapi - Link in libminiupnpc statically becasue I could not get the DLL to link properly - Call WSAStartup before doing network operations - Fix up a compiler warning about uninitialized backend_state N.B. The changes to configure.in and Makefile.am will break on non- Windows platforms. Steven Murdoch2011-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
* | Merge remote branch 'origin/master' into bug2046Steven Murdoch2011-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