diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-10-15 19:04:38 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-10-15 19:04:38 +0000 |
commit | 28dd458eaf911f10a4c18e68dca33e343a7ca2b0 (patch) | |
tree | 5293d1a51e7a04f489af53b1156e2f4ad2f653be /src/or/directory.c | |
parent | 01eacbca9ebf217bf1c8c5f883266092b4365cec (diff) | |
download | tor-28dd458eaf911f10a4c18e68dca33e343a7ca2b0.tar tor-28dd458eaf911f10a4c18e68dca33e343a7ca2b0.tar.gz |
Upload to trusted dir servers based on DirServer config options, not on routerinfos.
svn:r2529
Diffstat (limited to 'src/or/directory.c')
-rw-r--r-- | src/or/directory.c | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index 7726d3371..803aefe79 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -73,28 +73,27 @@ void directory_post_to_dirservers(uint8_t purpose, const char *payload, size_t payload_len) { - int i; + smartlist_t *dirservers; + routerinfo_t *router; routerlist_t *rl; char buf[16]; - router_get_routerlist(&rl); - if(!rl) - return; - - for(i=0; i < smartlist_len(rl->routers); i++) { - router = smartlist_get(rl->routers, i); - /* Note: this posts our descriptor to ourselves, if we're an - * authdirserver. But I think that's ok. */ - if(!router->is_trusted_dir) - continue; - if (options.FascistFirewall && purpose == DIR_PURPOSE_UPLOAD_DIR) { - sprintf(buf,"%d",router->dir_port); - if (!smartlist_string_isin(options.FirewallPorts, buf)) - continue; - } - directory_initiate_command_router(router, purpose, payload, payload_len); - } + router_get_trusted_dir_servers(&dirservers); + tor_assert(dirservers); + SMARTLIST_FOREACH(dirservers, trusted_dir_server_t *, ds, + { + /* Pay attention to fascistfirewall when we're uploading a + * router descriptor, but not when uploading a service + * descriptor -- those use Tor. */ + if (options.FascistFirewall && purpose == DIR_PURPOSE_UPLOAD_DIR && + !options.HttpProxy) { + sprintf(buf,"%d",ds->dir_port); + if (!smartlist_string_isin(options.FirewallPorts, buf)) + continue; + } + directory_initiate_command_trusted_dir(ds, purpose, payload, payload_len); + }); } /** Start a connection to a random running directory server, using |