Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-16 | Bump copyright date to 2019 | Nick Mathewson | |
2018-07-05 | Fix every include path changed in the previous commit (automated) | Nick Mathewson | |
I am very glad to have written this script. | |||
2018-07-01 | Remove needless includes from or.h | Nick Mathewson | |
or.h should really include only the minimum of stuff from or/*, common/*, and lib/*. | |||
2018-06-20 | Run rectify_include_paths.py | Nick Mathewson | |
2018-06-20 | Update copyrights to 2018. | Nick Mathewson | |
2018-06-15 | Split socks_request_t into its own header. | Nick Mathewson | |
2018-06-15 | Split entry and edge_connection_t into their own headers. | Nick Mathewson | |
2017-12-08 | Rename connection_free_ to connection_free_minimal. | Nick Mathewson | |
2017-10-31 | hs-v3: Attempt descriptor refetch when dirinfo changes | David Goulet | |
When the directory information changes, callback to the HS client subsystem so it can check if any pending SOCKS connections are waiting for a descriptor. If yes, attempt a refetch for those. Fixes #23762 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2017-09-15 | Run our #else/#endif annotator on our source code. | Nick Mathewson | |
2017-09-15 | Merge branch 'remove_allow_dotexit_v2' | Nick Mathewson | |
2017-09-15 | Remove AllowDotExit. | Nick Mathewson | |
It's been deprecated since 0.2.9.2-alpha. Closes ticket 23426. | |||
2017-09-14 | prop224 client-side: Start validating onion address pubkeys. | George Kadianakis | |
Fix the test_build_address() test and its test vectors python script. They were both using a bogus pubkey for building an HS address which does not validate anymore. Also fix a few more unittests that were using bogus onion addresses and were failing the validation. I replaced the bogus address with the one generated from the test vector script. | |||
2017-09-12 | hs-v3: Stall SOCKS connection when no live consensus available | David Goulet | |
Fixes #23481 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2017-08-24 | test: Add tests for fetching descs and handling SOCKS conns. | George Kadianakis | |
- Add tests that ensure that SOCKS requests for v2/v3 addresses get intercepted and handled. - Add test that stores and lookups an HS descriptor in the client-side cache. Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2017-03-15 | Run the copyright update script. | Nick Mathewson | |
2016-10-27 | Automated change to use smartlist_add_strdup | overcaffeinated | |
Use the following coccinelle script to change uses of smartlist_add(sl, tor_strdup(str)) to smartlist_add_strdup(sl, string) (coccinelle script from nickm via bug 20048): @@ expression a; expression b; @@ - smartlist_add + smartlist_add_strdup (a, - tor_strdup( b - ) ) | |||
2016-02-27 | Update the copyright year. | Nick Mathewson | |
2015-01-19 | Make check-spaces happier. | Nick Mathewson | |
2015-01-19 | Remove a now-needless testing workaround. | Nick Mathewson | |
2015-01-19 | Merge branch 'bug7555_v2_squashed' | Nick Mathewson | |
Conflicts: src/or/connection_edge.c | |||
2015-01-14 | More tests as suggested by rl1987 | Nick Mathewson | |
2015-01-13 | remove a bogus comment | Nick Mathewson | |
2015-01-13 | remove needless AllowDotExit in ↵ | Nick Mathewson | |
test_entryconn_rewrite_mapaddress_automap_onion2 | |||
2015-01-13 | Uncomment a test | Nick Mathewson | |
2015-01-13 | Allow MapAddress and Automap to work together | Nick Mathewson | |
The trick here is to apply mapaddress first, and only then apply automapping. Otherwise, the automap checks don't get done. Fix for bug 7555; bugfix on all versions of Tor supporting both MapAddress and AutoMap. | |||
2015-01-13 | (Disabled, failing) test for the bug in 7555. | Nick Mathewson | |
2015-01-13 | Fix memory leaks in entryconn tests. | Nick Mathewson | |
2015-01-13 | More unit tests for rewriting entry connection addresses | Nick Mathewson | |
2015-01-12 | Begin writing unit tests for rewrite code | Nick Mathewson | |