diff options
author | Roger Dingledine <arma@torproject.org> | 2006-10-06 23:37:07 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-10-06 23:37:07 +0000 |
commit | 1cf37f90c4da02335109dad3cd4bb3fcdce81f24 (patch) | |
tree | 80e0a99b3e1b48d01ebce2ac02fe697b7a2eab83 /src/or/or.h | |
parent | 864069f5c754f291c1c4ce63a7f9dc2bc31d4afe (diff) | |
download | tor-1cf37f90c4da02335109dad3cd4bb3fcdce81f24.tar.gz tor-1cf37f90c4da02335109dad3cd4bb3fcdce81f24.zip |
bugfix and cleanups re: entry guards.
svn:r8620
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 75adcb6c85..7a28b47961 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1723,7 +1723,8 @@ routerinfo_t *build_state_get_exit_router(cpath_build_state_t *state); const char *build_state_get_exit_nickname(cpath_build_state_t *state); void entry_guards_compute_status(void); -int entry_guard_register_connect_status(const char *digest, int succeeded); +int entry_guard_register_connect_status(const char *digest, int succeeded, + time_t now); void entry_nodes_should_be_added(void); void entry_guards_prepend_from_config(void); void entry_guards_update_state(or_state_t *state); |