aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-07-23 12:36:04 -0400
committerNick Mathewson <nickm@torproject.org>2012-07-23 12:36:04 -0400
commit20b625a0fdcf334f448bc5a49fee0d78137ed231 (patch)
tree844d0f33993eae92f26a9a54bd1a2b3c76f87873 /src
parent952f562691bb0888331afae3bec47541c0531467 (diff)
parent692005b38d3607f53d9fb605a6b4584553417ad9 (diff)
downloadtor-20b625a0fdcf334f448bc5a49fee0d78137ed231.tar
tor-20b625a0fdcf334f448bc5a49fee0d78137ed231.tar.gz
Merge remote-tracking branch 'origin/maint-0.2.3'
Diffstat (limited to 'src')
-rw-r--r--src/or/config.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 1a378c227..0271cfdb8 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -1466,7 +1466,7 @@ options_act(const or_options_t *old_options)
}
}
- if (options->ServerTransportPlugin) {
+ if (options->ServerTransportPlugin && server_mode(options)) {
for (cl = options->ServerTransportPlugin; cl; cl = cl->next) {
if (parse_server_transport_line(cl->value, 0)<0) {
log_warn(LD_BUG,
@@ -4021,6 +4021,13 @@ options_validate(or_options_t *old_options, or_options_t *options,
REJECT("Server transport line did not parse. See logs for details.");
}
+ if (options->ServerTransportPlugin && !server_mode(options)) {
+ log_notice(LD_GENERAL, "Tor is not configured as a relay but you specified"
+ " a ServerTransportPlugin line (%s). The ServerTransportPlugin "
+ "line will be ignored.",
+ esc_for_log(options->ServerTransportPlugin->value));
+ }
+
if (options->ConstrainedSockets) {
/* If the user wants to constrain socket buffer use, make sure the desired
* limit is between MIN|MAX_TCPSOCK_BUFFER in k increments. */