aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_entryconn.c
AgeCommit message (Collapse)Author
2016-10-27Automated change to use smartlist_add_strdupovercaffeinated
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-27Update the copyright year.Nick Mathewson
2015-01-19Make check-spaces happier.Nick Mathewson
2015-01-19Remove a now-needless testing workaround.Nick Mathewson
2015-01-19Merge branch 'bug7555_v2_squashed'Nick Mathewson
Conflicts: src/or/connection_edge.c
2015-01-14More tests as suggested by rl1987Nick Mathewson
2015-01-13remove a bogus commentNick Mathewson
2015-01-13remove needless AllowDotExit in ↵Nick Mathewson
test_entryconn_rewrite_mapaddress_automap_onion2
2015-01-13Uncomment a testNick Mathewson
2015-01-13Allow MapAddress and Automap to work togetherNick 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-13Fix memory leaks in entryconn tests.Nick Mathewson
2015-01-13More unit tests for rewriting entry connection addressesNick Mathewson
2015-01-12Begin writing unit tests for rewrite codeNick Mathewson