diff options
author | Roger Dingledine <arma@torproject.org> | 2009-01-06 16:03:38 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2009-01-06 16:03:38 +0000 |
commit | e1270723188812fb83a8aacf086b552dbd417267 (patch) | |
tree | 88da39e3aadd5a6dd2a305311beabf50a07ce9f1 /src | |
parent | 9abfb564a04b498ae25a63746c72a21ee7f2dbc8 (diff) | |
download | tor-e1270723188812fb83a8aacf086b552dbd417267.tar.gz tor-e1270723188812fb83a8aacf086b552dbd417267.zip |
Prevent bridge relays from serving their 'extrainfo' document
to anybody who asks, now that extrainfo docs include potentially
sensitive aggregated client geoip summaries.
svn:r17958
Diffstat (limited to 'src')
-rw-r--r-- | src/or/directory.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index 4baee04045..f72ab41bf6 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -2698,7 +2698,8 @@ directory_handle_command_get(dir_connection_t *conn, const char *headers, } if (!strcmpstart(url,"/tor/server/") || - (!options->BridgeAuthoritativeDir && !strcmpstart(url,"/tor/extra/"))) { + (!options->BridgeAuthoritativeDir && + !options->BridgeRelay && !strcmpstart(url,"/tor/extra/"))) { int res; const char *msg; const char *request_type = NULL; |