diff options
author | Peter Palfrader <peter@palfrader.org> | 2005-11-19 18:35:43 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2005-11-19 18:35:43 +0000 |
commit | b9d37a2d58e76ee233e2501e2e21503540c894ab (patch) | |
tree | ac99f1ab9a0df2e683056e74b1fa0a34522e1d88 /src/or/or.h | |
parent | 7446c7e6d726eb58954917d58f02529d1ce8e41d (diff) | |
download | tor-b9d37a2d58e76ee233e2501e2e21503540c894ab.tar tor-b9d37a2d58e76ee233e2501e2e21503540c894ab.tar.gz |
Add a new controller event type that allows controllers to get all
server descriptors that were uploaded to a router in its role as authoritative
dirserver.
svn:r5436
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index 393aae19c..1141f4022 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1739,6 +1739,7 @@ int control_event_bandwidth_used(uint32_t n_read, uint32_t n_written); void control_event_logmsg(int severity, unsigned int domain, const char *msg); int control_event_descriptors_changed(smartlist_t *routers); int control_event_address_mapped(const char *from, const char *to,time_t expires); +int control_event_or_authdir_new_descriptor(const char *action, const char *descriptor, const char *msg); int init_cookie_authentication(int enabled); int decode_hashed_password(char *buf, const char *hashed); |