diff options
author | Roger Dingledine <arma@torproject.org> | 2007-12-22 05:27:30 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-12-22 05:27:30 +0000 |
commit | 366c273d2722fcc29fe7f3377a8110046ebeb566 (patch) | |
tree | 0bafc93156c13aed461bd09a40c0d8aba2517725 | |
parent | 869858bf57b210d77fed729bf4f968a64454f581 (diff) | |
download | tor-366c273d2722fcc29fe7f3377a8110046ebeb566.tar tor-366c273d2722fcc29fe7f3377a8110046ebeb566.tar.gz |
Make "GETINFO/desc-annotations/id/<OR digest>" actually work.
svn:r12919
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/or/control.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -11,6 +11,7 @@ Changes in version 0.2.0.14-alpha - 2007-12-?? o Minor bugfixes: - Make the unit tests build again. + - Make "GETINFO/desc-annotations/id/<OR digest>" actually work. Changes in version 0.2.0.13-alpha - 2007-12-21 diff --git a/src/or/control.c b/src/or/control.c index 23c331b93..64712cff9 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -1782,6 +1782,7 @@ static const getinfo_item_t getinfo_items[] = { "current version"), ITEM("address", misc, "IP address of this Tor host, if we can guess it."), ITEM("dir-usage", misc, "Breakdown of bytes transferred over DirPort."), + PREFIX("desc-annotations/id/", dir, "Router annotations by hexdigest."), PREFIX("dir/server/", dir,"Router descriptors as retrieved from a DirPort."), PREFIX("dir/status/", dir,"Networkstatus docs as retrieved from a DirPort."), PREFIX("exit-policy/default", policies, |