Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-11-19 | Merge remote-tracking branch 'public/decouple_conn_attach_2' | Nick Mathewson | |
2015-11-18 | Merge remote-tracking branch 'teor/bug17632-no-ipv4-no-localhost' | Nick Mathewson | |
2015-11-19 | Really Really Fixup 86eba14ac549: Windows support, error return values | teor (Tim Wilson-Brown) | |
2015-11-18 | Really Fixup 86eba14ac549: error return values are negative | teor (Tim Wilson-Brown) | |
2015-11-18 | Fixup 86eba14ac549: add errno.h for EPROTONOSUPPORT | teor (Tim Wilson-Brown) | |
2015-11-18 | Update comments in get_interface_addresses_ioctl | teor (Tim Wilson-Brown) | |
Comment-only change noting platforms that can return IPv6 addresses from SIOCGIFCONF (or SIOCGLIFCONF). | |||
2015-11-18 | Fix unit tests on systems without IPv4 or localhost addresses | teor (Tim Wilson-Brown) | |
Make unit tests pass on IPv6-only systems, and systems without localhost addresses (like some FreeBSD jails). Fixes: * get_if_addrs_ifaddrs: systems without localhost * get_if_addrs_ioctl: only works on IPv4 systems * socket: check IPv4 and IPv6, skip on EPROTONOSUPPORT * socketpair_ersatz: uses IPv4, skip on EPROTONOSUPPORT Fixes bug #17632; bugfix on unit tests in 0.2.7.3-rc. c464a367728d was a partial fix for this issue in #17255; it was released in unit tests in 0.2.7.4-rc. Patch by "teor". | |||
2015-11-18 | Fix a startup time assert caused by periodic events not being initialized. | Yawning Angel | |
Loading a on disk bridge descriptor causes a directory download to be scheduled, which asserts due to the periodic events not being initialized yet. Fixes bug #17635, not in any released version of tor. | |||
2015-11-17 | windows already has a CALLBACK macro... | Nick Mathewson | |
2015-11-17 | Fix a server-side crash on DNS init | Nick Mathewson | |
2015-11-17 | Some unit tests now require that periodic events be initialized. | Nick Mathewson | |
2015-11-17 | Free pending_entry_connections on shutdown. | Nick Mathewson | |
2015-11-17 | Be more conservative in scanning the list of pending streams | Nick Mathewson | |
Now we only re-scan the list in the cases we did before: when we have a new circuit that we should try attaching to, or when we have added a new stream that we haven't tried to attach yet. This is part of 17590. | |||
2015-11-17 | Decouple ..attach_circuit() from most of its callers. | Nick Mathewson | |
Long ago we used to call connection_ap_handshake_attach_circuit() only in a few places, since connection_ap_attach_pending() attaches all the pending connections, and does so regularly. But this turned out to have a performance problem: it would introduce a delay to launching or connecting a stream. We couldn't just call connection_ap_attach_pending() every time we make a new connection, since it walks the whole connection list. So we started calling connection_ap_attach_pending all over, instead! But that's kind of ugly and messes up our callgraph. So instead, we now have connection_ap_attach_pending() use a list only of the pending connections, so we can call it much more frequently. We have a separate function to scan the whole connection array to see if we missed adding anything, and log a warning if so. Closes ticket #17590 | |||
2015-11-17 | Whoops; in this context the EV_TIMEOUT flag is needed | Nick Mathewson | |
2015-11-17 | Merge branch 'bug3199_redux_3' | Nick Mathewson | |
2015-11-17 | Changes to 3199 branch based on feedback from special | Nick Mathewson | |
2015-11-16 | Add documentation for periodic event api | Nick Mathewson | |
2015-11-13 | Change periodic.c to use libevent directly | Nick Mathewson | |
Libevent's periodic timers aren't the right solution when the timeout potentially changes every time. | |||
2015-11-13 | fix whitespace; remove dead code | Nick Mathewson | |
2015-11-13 | Fold all of the run-every-second stuff back into run_scheduled_events() | Nick Mathewson | |
2015-11-13 | Turn all of run_scheduled_events() into a bunch of periodic events | Nick Mathewson | |
This patch is designed to look good when you see it through 'diff -b': it mostly leaves entries in the same order, and leaves the code unmodified. | |||
2015-11-13 | Connect periodic events to main | Nick Mathewson | |
2015-11-13 | Infrastructure for replacing global periodic events in main.c | Kevin Butler | |
(This is from Kevin's bug3199 patch series; nick extracted it into a new file and changed the interface a little, then did some API tweaks on it.) | |||
2015-11-13 | appease check-spaces | Nick Mathewson | |
2015-11-13 | Merge remote-tracking branch 'public/ticket11150_client_only' | Nick Mathewson | |
2015-11-13 | Remove a little duplicated code in TAP key expansion | Nick Mathewson | |
patch from pfrankw; closes 17587. | |||
2015-11-13 | fix an email address in doc/HACKING/ReleasingTor.md | Nick Mathewson | |
2015-11-13 | Merge commit '741d2dc685a0e380bc4d8fbcda5a33b70272b3f7' | Nick Mathewson | |
2015-11-13 | Merge commit '7b859fd8c558c9cf08add79db87fb1cb76537535' | Nick Mathewson | |
2015-11-13 | Bump to 0.2.7.5 | Nick Mathewson | |
2015-11-12 | Merge branch 'decouple_circuit_mark_squashed' | Nick Mathewson | |
2015-11-12 | Experimentally decouple the main body of circuit_mark_for_close | Nick Mathewson | |
2015-11-12 | + and / usage clarification - Fixes #13158 | Joan Queralt | |
2015-11-12 | Merge branch 'karsten_bug13192_026_03_teor' | Nick Mathewson | |
2015-11-12 | Rename cast_double_to_int64 to clamp_double_to_int64 | Nick Mathewson | |
2015-11-12 | Make round_to_next_multiple_of always round upwards. | Nick Mathewson | |
Yes, even if it has to return a non-multiple. This prevents us from ever having a bug where we try to use it for allocation, and under-allocate. | |||
2015-11-10 | Merge branch 'bug17549' | Nick Mathewson | |
2015-11-10 | appease check-spaces | Nick Mathewson | |
2015-11-10 | every version of openssl we support has SSL_get_state | Nick Mathewson | |
2015-11-10 | Every openssl we support has ERR_remove_thread_state | Nick Mathewson | |
2015-11-10 | Move openssl version compatibility defines into a new header. | Nick Mathewson | |
2015-11-10 | Mark fallback directoriess as too busy after a 503 response | teor (Tim Wilson-Brown) | |
Mark fallback directory mirrors as "too busy" when they return a 503 response. Previously, the code just marked authorities as busy. Unless clients set their own fallback directories, they will never see this bug. (There are no default fallbacks yet.) Fixes bug 17572; bugfix on 5c51b3f1f0d4 released in 0.2.4.7-alpha. Patch by "teor". | |||
2015-11-06 | Fix the tortls.c unit tests to pass with OpenSSL 1.1.0-dev. | Yawning Angel | |
The string description for the states got changed slightly. | |||
2015-11-06 | Fix compilation with OpenSSL 1.1.0 --enable-gcc-warnings is set. | Yawning Angel | |
2015-11-06 | Fix compilation with OpenSSL 1.1.0-dev. | Yawning Angel | |
OpenSSL changed the API: * https://github.com/openssl/openssl/commit/5998e2903589e7b19e102ebff06521f2dcb60409 * https://github.com/openssl/openssl/commit/b0700d2c8de79252ba605748a075cf2e5d670da1 | |||
2015-11-06 | "And now a better patch which builds the tests if LibreSSL is used." | Nick Mathewson | |
Works on the latest LibreSSL (in OpenBSD-current). (Patch from 'rubiate' on #17253. | |||
2015-11-05 | Fix SipHash-2-4 performance for non multiple of 8 buffers. | Yawning Angel | |
Code cribbed from Andrew Moon's Public Domain SipHash-2-4 implementation (which IMO is also cleaner). Fixes bug 17544. | |||
2015-11-05 | Delete trailing whitespace in md files | Nick Mathewson | |
2015-11-05 | add release notes | Nick Mathewson | |