diff options
author | Roger Dingledine <arma@torproject.org> | 2004-03-31 23:06:16 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-03-31 23:06:16 +0000 |
commit | ee45ae575d282cd8b7deb63522b4f982096ae5ab (patch) | |
tree | 15d337f2c1a8175eb6d7eb2a6476c162f0263a57 /src/or/or.h | |
parent | 289481314156c1c357712af94accab74bdee076d (diff) | |
download | tor-ee45ae575d282cd8b7deb63522b4f982096ae5ab.tar tor-ee45ae575d282cd8b7deb63522b4f982096ae5ab.tar.gz |
allow conns to demand to be attached to a clean circuit
(nobody uses this yet)
svn:r1417
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h index 0f93a5426..eb627f0a8 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -658,7 +658,8 @@ int _circuit_mark_for_close(circuit_t *circ); circuit_t *circuit_get_by_circ_id_conn(uint16_t circ_id, connection_t *conn); circuit_t *circuit_get_by_conn(connection_t *conn); -circuit_t *circuit_get_newest(connection_t *conn, int must_be_open); +circuit_t *circuit_get_newest(connection_t *conn, + int must_be_open, int must_be_clean); circuit_t *circuit_get_by_service_and_purpose(const char *servid, int purpose); void circuit_expire_building(void); |