diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-06-19 20:40:41 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-06-19 20:40:41 +0000 |
commit | 64fc1f7bae174d62c40686ec00674d2671c88258 (patch) | |
tree | 6d1a156e462c22f2fd5da207e95c06509c02f347 /src/or/circuitlist.c | |
parent | b5fd75a063e487e845c98530cd2032f303d34462 (diff) | |
download | tor-64fc1f7bae174d62c40686ec00674d2671c88258.tar.gz tor-64fc1f7bae174d62c40686ec00674d2671c88258.zip |
Implement all the rest of the new controller protocol, debug a little, add some new features, add ADDRMAP events.
svn:r4460
Diffstat (limited to 'src/or/circuitlist.c')
-rw-r--r-- | src/or/circuitlist.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index db67a21688..789781c936 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -154,6 +154,13 @@ circuit_close_all_marked(void) } } +/** DOCDOC **/ +circuit_t * +_circuit_get_global_list(void) +{ + return global_circuitlist; +} + /** Function to make circ-\>state human-readable */ const char * circuit_state_to_string(int state) { |