aboutsummaryrefslogtreecommitdiff
path: root/src/or/circuituse.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-03-26 01:34:42 -0400
committerNick Mathewson <nickm@torproject.org>2011-03-30 14:41:41 -0400
commitaa950e6c48471f00ff9497fa4e9fad1c71e75868 (patch)
tree58a1a24fafb531c7f4214cba8a1bf98041fe6ae6 /src/or/circuituse.h
parent5eaba5ac2128eebf095441e23b6b7516ce35dd5d (diff)
downloadtor-aa950e6c48471f00ff9497fa4e9fad1c71e75868.tar
tor-aa950e6c48471f00ff9497fa4e9fad1c71e75868.tar.gz
Use timevals, not time_t, when expiring circuits.
We've got millisecond timers now, we might as well use them. This change won't actually make circuits get expiered with microsecond precision, since we only call the expiry functions once per second. Still, it should avoid the situation where we have a circuit get expired too early because of rounding. A couple of the expiry functions now call tor_gettimeofday: this should be cheap since we're only doing it once per second. If it gets to be called more often, though, we should onsider having the current time be an argument again.
Diffstat (limited to 'src/or/circuituse.h')
-rw-r--r--src/or/circuituse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuituse.h b/src/or/circuituse.h
index 1a604b415..a121099ac 100644
--- a/src/or/circuituse.h
+++ b/src/or/circuituse.h
@@ -12,7 +12,7 @@
#ifndef _TOR_CIRCUITUSE_H
#define _TOR_CIRCUITUSE_H
-void circuit_expire_building(time_t now);
+void circuit_expire_building(void);
void circuit_remove_handled_ports(smartlist_t *needed_ports);
int circuit_stream_is_being_handled(edge_connection_t *conn, uint16_t port,
int min);