From ee23b7a470c6bc0f5cf08ea2ca13d541626de6b6 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Tue, 17 Aug 2004 06:27:32 +0000 Subject: use unverified routers in the desired positions svn:r2249 --- src/or/config.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/or/config.c') diff --git a/src/or/config.c b/src/or/config.c index a4d0490df..de529aafc 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -825,6 +825,10 @@ int getconfig(int argc, char **argv, or_options_t *options) { options->_AllowUnverified |= ALLOW_UNVERIFIED_EXIT; else if (!strcasecmp(cp, "middle")) options->_AllowUnverified |= ALLOW_UNVERIFIED_MIDDLE; + else if (!strcasecmp(cp, "introduction")) + options->_AllowUnverified |= ALLOW_UNVERIFIED_INTRODUCTION; + else if (!strcasecmp(cp, "rendezvous")) + options->_AllowUnverified |= ALLOW_UNVERIFIED_RENDEZVOUS; else { log(LOG_WARN, "Unrecognized value '%s' in AllowUnverifiedNodes", cp); -- cgit v1.2.3