aboutsummaryrefslogtreecommitdiff
path: root/src/or/or.h
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-12-22 06:25:49 +0000
committerRoger Dingledine <arma@torproject.org>2008-12-22 06:25:49 +0000
commit0c6ff7d990e45a6699cad5f7f140182ed0c5c991 (patch)
tree62b6e54619be90e4cadfa0e7afc1278d41a84750 /src/or/or.h
parent7262bf5eab97105ac833d0700a30052e053537dc (diff)
downloadtor-0c6ff7d990e45a6699cad5f7f140182ed0c5c991.tar
tor-0c6ff7d990e45a6699cad5f7f140182ed0c5c991.tar.gz
the default should not be the notify the poster, unless something
more extreme happens. the default should be to be quiet unless something more extreme happens. at least, this doesn't generate complaints anymore. perhaps that means it is working better? :) svn:r17724
Diffstat (limited to 'src/or/or.h')
-rw-r--r--src/or/or.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h
index 06d1b8935..ffb989443 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -4373,8 +4373,8 @@ void router_set_status(const char *digest, int up);
/** Return value for router_add_to_routerlist() and dirserv_add_descriptor() */
typedef enum was_router_added_t {
- ROUTER_ADDED_SUCCESSFULLY = 0,
- ROUTER_ADDED_NOTIFY_GENERATOR = 1,
+ ROUTER_ADDED_SUCCESSFULLY = 1,
+ ROUTER_ADDED_NOTIFY_GENERATOR = 0,
ROUTER_BAD_EI = -1,
ROUTER_WAS_NOT_NEW = -2,
ROUTER_NOT_IN_CONSENSUS = -3,