diff options
author | George Kadianakis <desnacked@riseup.net> | 2014-09-15 15:28:11 +0300 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2014-09-15 16:07:48 +0300 |
commit | 24a7726955f415564412582602271de9de3164de (patch) | |
tree | c3d1960a54ef8dea0d9837e22a0293c13a3f34cd /src/or/routerlist.h | |
parent | 3e7c5e9f4464e5ca5f33f1206af72580b9dc4e20 (diff) | |
download | tor-24a7726955f415564412582602271de9de3164de.tar.gz tor-24a7726955f415564412582602271de9de3164de.zip |
Implement Tor2webRendezvousPoints functionality.
Diffstat (limited to 'src/or/routerlist.h')
-rw-r--r-- | src/or/routerlist.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/or/routerlist.h b/src/or/routerlist.h index 52f2303c7c..83fea784cb 100644 --- a/src/or/routerlist.h +++ b/src/or/routerlist.h @@ -58,6 +58,10 @@ const routerstatus_t *router_pick_fallback_dirserver(dirinfo_type_t type, int router_get_my_share_of_directory_requests(double *v3_share_out); void router_reset_status_download_failures(void); int routers_have_same_or_addrs(const routerinfo_t *r1, const routerinfo_t *r2); +void router_add_running_nodes_to_smartlist(smartlist_t *sl, int allow_invalid, + int need_uptime, int need_capacity, + int need_guard, int need_desc); + const routerinfo_t *routerlist_find_my_routerinfo(void); uint32_t router_get_advertised_bandwidth(const routerinfo_t *router); uint32_t router_get_advertised_bandwidth_capped(const routerinfo_t *router); |