diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-08-26 23:39:11 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-08-26 23:39:11 +0000 |
commit | d45d66daf0ef9ec9466ee686890379b83c86ceb0 (patch) | |
tree | 6f4c533364b5efb5c9bdd568a2734fbe3651411c /doc/dir-spec.txt | |
parent | 26d2301c765799e4d41dc437996f3d26ba506482 (diff) | |
download | tor-d45d66daf0ef9ec9466ee686890379b83c86ceb0.tar.gz tor-d45d66daf0ef9ec9466ee686890379b83c86ceb0.zip |
More dir-spec tweaks: specify whether concatenation happens before or after compression (either) and make status URLs parallel server URLs better (or people will mock me later).
svn:r4877
Diffstat (limited to 'doc/dir-spec.txt')
-rw-r--r-- | doc/dir-spec.txt | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/doc/dir-spec.txt b/doc/dir-spec.txt index ef16047240..fe1a24a341 100644 --- a/doc/dir-spec.txt +++ b/doc/dir-spec.txt @@ -154,9 +154,13 @@ $Id$ The authoritative network-status published by a host should be available at: http://<hostname>/tor/status/authority.z - An authoritative network-status published by another host with fingerprint <F> - should be available at: - http://<hostname>/tor/status/<F>.z + An authoritative network-status published by another host with fingerprint + <F> should be available at: + http://<hostname>/tor/status/fp/<F>.z + + An authoritative network-status published by other hosts with fingerprints + <F1>,<F2>,<F3> should be available at: + http://<hostname>/tor/status/fp/<F1>+<F2>+<F3>.z The most recent network-status documents from all known authoritative directories, concatenated, should be available at: @@ -180,7 +184,11 @@ $Id$ For debugging, directories MAY expose non-compressed objects at URLs like the above, but without the final ".z". - [XXXX specify concatenation of several servers.] + Clients MUST handle compressed concatenated information in two forms: + - A concatenated list of zlib-compressed objects. + - A zlib-compressed concatenated list of objects. + Directory servers MAY generate either format: the former requires less + CPU, but the latter requires less bandwidth. 4.1. Caching @@ -191,6 +199,9 @@ $Id$ A concatenated list of all network-status documents should be available at: http://<hostname>/tor/status/all.z +4.2. Compression + + 5. Client operation Every OP or OR, including directory servers, acts as a client to the |