Nick Mathewson
|
f54e54b0b4
|
Bump copyright dates to 2015, in case someday this matters.
|
2015-01-02 14:27:39 -05:00 |
|
rl1987
|
5a7dd44d6e
|
Using channel state lookup macros in circuitbias.c.
|
2014-12-21 14:48:38 -05:00 |
|
Nick Mathewson
|
fcdcb377a4
|
Add another year to our copyright dates.
Because in 95 years, we or our successors will surely care about
enforcing the BSD license terms on this code. Right?
|
2014-10-28 15:30:16 -04:00 |
|
Nick Mathewson
|
6969bd9a02
|
Autoconvert most circuit-list iterations to smartlist iterations
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);
|
2014-08-15 16:23:22 -04:00 |
|
Nick Mathewson
|
275ab61ad4
|
Appease make check-spaces
|
2013-10-31 14:45:20 -04:00 |
|
Nick Mathewson
|
5cba0ddfc4
|
Make circpathbias and circuitbuild compile.
That was the tricky part
|
2013-10-31 14:28:49 -04:00 |
|
Nick Mathewson
|
b4ebf8421a
|
Move pathbias functions into a new file.
Does not compile yet. This is the "no code changed" diff.
|
2013-10-31 14:17:49 -04:00 |
|