diff options
author | Roger Dingledine <arma@torproject.org> | 2006-10-01 22:16:55 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-10-01 22:16:55 +0000 |
commit | a3efc8e3d19a4b221c460f687f780915502542fb (patch) | |
tree | cd70668666e1c4d75192f4ea54e005a28e9b3fb0 /src/or/router.c | |
parent | a23ba84702a402f0bc5b9a81375b344118310b87 (diff) | |
download | tor-a3efc8e3d19a4b221c460f687f780915502542fb.tar tor-a3efc8e3d19a4b221c460f687f780915502542fb.tar.gz |
- V1 authorities should set "HSAuthoritativeDir 1" to continue being
hidden service authorities too.
- Just because your DirPort is open doesn't mean people should be
able to remotely teach you about hidden service descriptors. Now
only accept rendezvous posts if you've got HSAuthoritativeDir set.
svn:r8573
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c index e43a593c8..b139440f5 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -364,7 +364,7 @@ init_keys(void) (uint16_t)options->DirPort, digest, options->V1AuthoritativeDir, /* v1 authority */ 1, /* v2 authority */ - options->V1AuthoritativeDir /* hidserv authority */); + options->HSAuthoritativeDir /* hidserv authority */); } return 0; /* success */ } |