Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |