aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2010-12-21 15:53:32 -0500
committerNick Mathewson <nickm@torproject.org>2010-12-21 15:53:32 -0500
commit95e21779a3666a137fc23912743f1c8ff6398c84 (patch)
tree8617f539c11b9fd21a3e3b8ce357c2090040bfd4
parent0a3b7f1471b608a83edfdf3cdca391aca6f73eb1 (diff)
parente895919b171029df4d38285b0be4483376b4ad25 (diff)
downloadtor-95e21779a3666a137fc23912743f1c8ff6398c84.tar
tor-95e21779a3666a137fc23912743f1c8ff6398c84.tar.gz
Merge remote branch 'origin/maint-0.2.2'
-rw-r--r--changes/bug20604
-rw-r--r--src/or/config.c6
2 files changed, 10 insertions, 0 deletions
diff --git a/changes/bug2060 b/changes/bug2060
new file mode 100644
index 000000000..eb95aedb2
--- /dev/null
+++ b/changes/bug2060
@@ -0,0 +1,4 @@
+ o Minor features
+ - Make sure to disable DirPort if running as a bridge. DirPorts aren't
+ used on bridges, and it makes bridge scanning way too easy.
+
diff --git a/src/or/config.c b/src/or/config.c
index 0d1fee536..9d9d6e3be 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -3332,6 +3332,12 @@ options_validate(or_options_t *old_options, or_options_t *options,
"PublishServerDescriptor line.");
}
+ if (options->BridgeRelay && options->DirPort) {
+ log_warn(LD_CONFIG, "Can't set a DirPort on a bridge relay; disabling "
+ "DirPort");
+ options->DirPort = 0;
+ }
+
if (options->MinUptimeHidServDirectoryV2 < 0) {
log_warn(LD_CONFIG, "MinUptimeHidServDirectoryV2 option must be at "
"least 0 seconds. Changing to 0.");