Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-08-15 | Autoconvert most circuit-list iterations to smartlist iterations | Nick Mathewson | |
Breaks compilation. Used this coccinelle script: @@ identifier c; typedef circuit_t; iterator name TOR_LIST_FOREACH; iterator name SMARTLIST_FOREACH_BEGIN; statement S; @@ - circuit_t *c; ... - TOR_LIST_FOREACH(c, \(&global_circuitlist\|circuit_get_global_list()\), head) + SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, c) S + SMARTLIST_FOREACH_END(c); | |||
2013-10-31 | Appease make check-spaces | Nick Mathewson | |
2013-10-31 | Make circpathbias and circuitbuild compile. | Nick Mathewson | |
That was the tricky part | |||
2013-10-31 | Move pathbias functions into a new file. | Nick Mathewson | |
Does not compile yet. This is the "no code changed" diff. |