diff options
author | Roger Dingledine <arma@torproject.org> | 2006-06-13 11:11:19 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-06-13 11:11:19 +0000 |
commit | b4e415ba3c43e815f4eab2a09dde59ecc4aabdb3 (patch) | |
tree | 0aad775b91e3a79bbb47aa9f2e0bcba85af7eaa2 /src/or/or.h | |
parent | 88dadc917cf48d234c9fab82751eece5ef119107 (diff) | |
download | tor-b4e415ba3c43e815f4eab2a09dde59ecc4aabdb3.tar tor-b4e415ba3c43e815f4eab2a09dde59ecc4aabdb3.tar.gz |
now we can tell dirserv_dump_directory_to_string() whether we want
it to include down/invalid descriptors or not.
svn:r6618
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 99acf2b41..7100290f7 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1910,7 +1910,8 @@ int dirserv_thinks_router_is_blatantly_unreachable(routerinfo_t *router, time_t now); int list_server_status(smartlist_t *routers, char **router_status_out); int dirserv_dump_directory_to_string(char **dir_out, - crypto_pk_env_t *private_key); + crypto_pk_env_t *private_key, + int complete); void directory_set_dirty(void); size_t dirserv_get_directory(const char **cp, int compress); size_t dirserv_get_runningrouters(const char **rr, int compress); |