diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-04-09 18:44:50 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-04-09 18:44:50 +0000 |
commit | 4901ee0a8c0efafb71b5fdaf6961ef04556ec1a4 (patch) | |
tree | 107b368dc6dd304989e2ae9653de74738915325f /src/or/or.h | |
parent | 186df044cdf896131af5fba1f2e4da7a468e79ab (diff) | |
download | tor-4901ee0a8c0efafb71b5fdaf6961ef04556ec1a4.tar.gz tor-4901ee0a8c0efafb71b5fdaf6961ef04556ec1a4.zip |
r19273@catbus: nickm | 2008-04-09 14:44:23 -0400
Do a slightly better fix for r14329: don't call time() quite so much. Also note the time(NULL) hack we wanted to do in the TODO.
svn:r14334
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h index 71397597e1..a77794467d 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3560,7 +3560,7 @@ void append_cell_to_circuit_queue(circuit_t *circ, or_connection_t *orconn, cell_t *cell, int direction); void connection_or_unlink_all_active_circs(or_connection_t *conn); int connection_or_flush_from_first_active_circuit(or_connection_t *conn, - int max); + int max, time_t now); void assert_active_circuits_ok(or_connection_t *orconn); void make_circuit_inactive_on_conn(circuit_t *circ, or_connection_t *conn); void make_circuit_active_on_conn(circuit_t *circ, or_connection_t *conn); |