Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-16 | Merge remote-tracking branch 'origin/maint-0.2.2' | Nick Mathewson | |
2012-05-16 | Make the succeeding parse_http_time tests more obviously right | Nick Mathewson | |
(When the correct answer is given in terms of seconds since the epoch, it's hard to be sure that it really is the right answer just by reading the code.) | |||
2012-05-16 | Merge branch 'bug5346_squashed' into maint-0.2.2 | Nick Mathewson | |
2012-05-16 | Fix month check in parse_http_time, add test | Sebastian Hahn | |
2012-05-16 | Remove more dubiosity in struct tm handling. related to bug5346 | Nick Mathewson | |
2012-05-16 | changes file for branch bug5346 | Nick Mathewson | |
2012-05-16 | Reject an additional type of bad date in parse_http_time | Nick Mathewson | |
2012-05-16 | Fix parse_http_time and add tests | Esteban Manchado Velázquez | |
* It seems parse_http_time wasn't parsing correctly any date with commas (RFCs 1123 and 850). Fix that. * It seems parse_http_time was reporting the wrong month (they start at 0, not 1). Fix that. * Add some tests for parse_http_time, covering all three formats. | |||
2012-05-16 | Merge remote-tracking branch 'public/bug5139' | Nick Mathewson | |
2012-05-16 | Add changes file for bug 4108 | Nick Mathewson | |
2012-05-16 | In connection_ap_handshake_process_socks(), mark the socks request as ↵ | Fabian Keil | |
finished if a reply is send after a parse error Silences the log message: [warn] {BUG} _connection_mark_unattached_ap(): Bug: stream (marked at connection_edge.c:2224) sending two socks replies? after the client triggered the "Tor is not an HTTP Proxy" response. No additional socks reply was sent, though. | |||
2012-05-16 | Merge remote-tracking branch 'public/bug3964' | Nick Mathewson | |
2012-05-16 | Merge branch 'bug5380' | Nick Mathewson | |
2012-05-16 | Remove over-two-months-old entry guards even while running. | Roger Dingledine | |
Previously, we only did this check at startup, which could lead to us holding a guard indefinitely, and give weird results. Fixes bug 5380; bugfix on 0.2.1.14-rc. (Patch by Roger; changes file and commit message by Nick) | |||
2012-05-16 | Correct documentation for remove_obsolete_entry_guards. | Nick Mathewson | |
2012-05-16 | Merge remote-tracking branch 'public/bug2297' | Nick Mathewson | |
2012-05-16 | Merge remote-tracking branch 'public/bug2822' | Nick Mathewson | |
2012-05-16 | Merge remote-tracking branch 'origin/maint-0.2.2' | Nick Mathewson | |
2012-05-16 | Correct the bulletproofing of routerlist_insert() | Nick Mathewson | |
The original code updated some variables, but forgot to remove a replaced old-routerdesc from rl->old_routers. Related to bug 1776. | |||
2012-05-16 | Merge remote-tracking branch 'public/bug3296' | Nick Mathewson | |
2012-05-16 | Merge branch 'bug5095_squashed' | Nick Mathewson | |
2012-05-16 | When ReloadTorrcOnSIGHUP=1, do non-reload activities anyway | Nick Mathewson | |
Previously, we skipped everything that got invoked from options_init_from_torrc. But some of the stuff in options_act_reversible and options_act is actually important, like reopening the logs. Now, a SIGHUP always makes the effects of an options_set() happen, even though the options haven't changed. Fix for bug 5095; bugfix on 0.2.1.9-alpha, which introduced __ReloadTorrcOnSIGHUP. | |||
2012-05-16 | Fix some remaining nmake/msvc build issues | Nick Mathewson | |
2012-05-16 | Merge branch 'win32_winnt' | Nick Mathewson | |
2012-05-15 | Merge remote-tracking branch 'origin/maint-0.2.2' | Nick Mathewson | |
2012-05-15 | Clarify MaxCircuitDirtiness behavior with hidden services. Bug 5259. | Nick Mathewson | |
2012-05-15 | Merge remote-tracking branch 'origin/maint-0.2.2' | Nick Mathewson | |
2012-05-15 | Merge branch 'bug5796_022_squashed' into maint-0.2.2 | Nick Mathewson | |
2012-05-15 | Fix a crash bug on SETCIRCUITPURPOSE. | Nick Mathewson | |
2012-05-15 | Merge remote-tracking branch 'origin/maint-0.2.2' | Nick Mathewson | |
2012-05-15 | Merge remote-tracking branch 'karsten/geoip-may2012' into maint-0.2.2 | Nick Mathewson | |
2012-05-15 | Merge remote-tracking branch 'linus/task-5891' | Nick Mathewson | |
2012-05-15 | Clarify changes file regarding which bugs get fixed. | Linus Nordberg | |
2012-05-15 | Rename changes file. | Linus Nordberg | |
2012-05-15 | Assert that rep_hist_format_desc_stats() returns !NULL. | Linus Nordberg | |
The guard against this is the test for start_of_served_descs_stats_interval != 0 done earlier. | |||
2012-05-15 | Fix desc stats on bridge authorities that didn't serve anything. | Karsten Loesing | |
2012-05-14 | Bump _WIN32_WINNT to 0x0501 throughout the code | Nick Mathewson | |
This tells the windows headers to give us definitions that didn't exist before XP -- like the ones that we need for IPv6 support. See bug #5861. We didn't run into this issue with mingw, since mingw doesn't respect _WIN32_WINNT as well as it should for some of its definitions. | |||
2012-05-14 | Remove all instances of WIN32_WINNT (without leading _) | Nick Mathewson | |
We started adding it in 59e2c77824840f back in 2004, 8 years and 3 days ago. It's time to deprogram ourselves from this cargo cult. | |||
2012-05-14 | Add a changes file for the misc bug5859 build issues | Nick Mathewson | |
2012-05-14 | MSVC build issue: it can't tell that tor_assert(0) aborts. | Nick Mathewson | |
2012-05-14 | MSVC build issue: make 'const' in declaration match 'const' in definition | Nick Mathewson | |
MSVC warns if you declare a function as having a "int foo" argument and then implement it with a "const int foo" argument, even though the latter "const" is not a part of the function's interface. | |||
2012-05-14 | MSVC build issue: we use INLINE as the one that will magically work | Nick Mathewson | |
2012-05-14 | MSVC build issue: add magic to make openssl headers in aes.c work | Nick Mathewson | |
2012-05-14 | Be a good git person: store nmakefiles in correct text fmt | Nick Mathewson | |
2012-05-14 | Remove the unused torrc.bridge.in. Bug 5622. | Nick Mathewson | |
2012-05-14 | Add some MSVC stuff to gitignore | Nick Mathewson | |
2012-05-14 | We do not need to define _WIN32 by hand; MSVC does that for us | Nick Mathewson | |
Bug 5858; fix on 0.2.3.12-alpha | |||
2012-05-14 | Fix win32 compilation of 31eb73f88e8 | Nick Mathewson | |
2012-05-11 | Do not publish the "git-XXX" tag in server descriptors | Nick Mathewson | |
Instead, allow packagers to put a 'TOR_BUILD_TAG' field in the server descriptor to indicate a platform-specific value, if they need to. (According to weasel, this was his use for the git- tag previously.) This is part of 2988 | |||
2012-05-11 | Cut down on the OS information we give. | Nick Mathewson | |
For uname-based detection, we now give only the OS name (e.g., "Darwin", "Linux".) For Windows, we give only the Operating System name as inferred from dw(Major|Minor)version, (e.g., "Windows XP", "Windows 7"), and whether the VER_NT_SERVER flag is set. For ticket 2988. |