diff options
author | Roger Dingledine <arma@torproject.org> | 2009-08-31 18:37:25 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2009-08-31 18:37:25 -0400 |
commit | 075c004095e25940707aa496b49e29caefdd73e8 (patch) | |
tree | 6c89b4994b1c6152614653de36a17cf7a8f94ee2 /doc | |
parent | 4c297f74f79e0e3d357d20bfc584eccc758d1fd8 (diff) | |
download | tor-075c004095e25940707aa496b49e29caefdd73e8.tar.gz tor-075c004095e25940707aa496b49e29caefdd73e8.zip |
Add getinfo accepted-server-descriptor. Clean spec.
Add a "getinfo status/accepted-server-descriptor" controller
command, which is the recommended way for controllers to learn
whether our server descriptor has been successfully received by at
least on directory authority. Un-recommend good-server-descriptor
getinfo and status events until we have a better design for them.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/spec/control-spec.txt | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/doc/spec/control-spec.txt b/doc/spec/control-spec.txt index 0cc3bb2928..cf92e2b9e3 100644 --- a/doc/spec/control-spec.txt +++ b/doc/spec/control-spec.txt @@ -558,6 +558,7 @@ $Id$ "status/circuit-established" "status/enough-dir-info" "status/good-server-descriptor" + "status/accepted-server-descriptor" "status/..." These provide the current internal Tor values for various Tor states. See Section 4.1.10 for explanations. (Only a few of the @@ -1488,18 +1489,22 @@ $Id$ We successfully uploaded our server descriptor to at least one of the directory authorities, with no complaints. - {This event could affect the controller's idea of server status, but - the controller should not interrupt the user to tell them so.} + {Originally, the goal of this event was to declare "every authority + has accepted the descriptor, so there will be no complaints + about it." But since some authorities might be offline, it's + harder to get certainty than we had thought. As such, this event + is equivalent to ACCEPTED_SERVER_DESCRIPTOR below. Controllers + should just look at ACCEPTED_SERVER_DESCRIPTOR and should ignore + this event for now.} NAMESERVER_STATUS "NS=addr" "STATUS=" "UP" / "DOWN" "ERR=" message One of our nameservers has changed status. - // actually notice - {This event could affect the controller's idea of server status, but - the controller should not interrupt the user to tell them so.} + {This event could affect the controller's idea of server status, but + the controller should not interrupt the user to tell them so.} NAMESERVER_ALL_DOWN All of our nameservers have gone down. |