diff options
author | Andrea Shepard <andrea@torproject.org> | 2012-09-27 15:09:37 -0700 |
---|---|---|
committer | Andrea Shepard <andrea@torproject.org> | 2012-10-10 00:44:46 -0700 |
commit | 741bc97b2414eb8ecfe0367bb75aea376e9ce73b (patch) | |
tree | a1d73ee0bd00e7e7b7db097e2b669c942ccc5614 /src/or/circuitmux.c | |
parent | aff77eb1a9dcbdf723d3f8e74e6502e5047bbe63 (diff) | |
download | tor-741bc97b2414eb8ecfe0367bb75aea376e9ce73b.tar.gz tor-741bc97b2414eb8ecfe0367bb75aea376e9ce73b.zip |
Add comment for circuitmux_move_active_circ_to_tail() in circuitmux.c
Diffstat (limited to 'src/or/circuitmux.c')
-rw-r--r-- | src/or/circuitmux.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/or/circuitmux.c b/src/or/circuitmux.c index deb5bf12a6..c01f38f599 100644 --- a/src/or/circuitmux.c +++ b/src/or/circuitmux.c @@ -155,6 +155,11 @@ circuitmux_prev_active_circ_p(circuitmux_t *cmux, circuit_t *circ); * Linked list helpers */ +/** + * Move an active circuit to the tail of the cmux's active circuits list; + * used by circuitmux_notify_xmit_cells(). + */ + static INLINE void circuitmux_move_active_circ_to_tail(circuitmux_t *cmux, circuit_t *circ, cell_direction_t direction) |