Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-27 | Update the copyright year. | Nick Mathewson | |
2016-02-27 | Make sure that every module in src/or has a brief description. | Nick Mathewson | |
2015-01-02 | Bump copyright dates to 2015, in case someday this matters. | Nick Mathewson | |
2014-12-21 | Using channel state lookup macros in circuitbias.c. | rl1987 | |
2014-10-28 | Add another year to our copyright dates. | Nick Mathewson | |
Because in 95 years, we or our successors will surely care about enforcing the BSD license terms on this code. Right? | |||
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. |