Explorar el Código

...but only if you're a server

svn:r3233
Roger Dingledine hace 19 años
padre
commit
e29d7329b3
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  1. 3 2
      src/or/config.c

+ 3 - 2
src/or/config.c

@@ -1367,8 +1367,9 @@ options_validate(or_options_t *options)
     log(LOG_WARN,"BandwidthBurst must be less than %d",INT_MAX);
     result = -1;
   }
-  if (options->BandwidthRate < ROUTER_REQUIRED_MIN_BANDWIDTH) {
-    log(LOG_WARN,"BandwidthRate is set to %d bytes/second. It must be at least %d.", (int)options->BandwidthRate, ROUTER_REQUIRED_MIN_BANDWIDTH);
+  if (server_mode(options) &&
+      options->BandwidthRate < ROUTER_REQUIRED_MIN_BANDWIDTH) {
+    log(LOG_WARN,"BandwidthRate is set to %d bytes/second. For servers, it must be at least %d.", (int)options->BandwidthRate, ROUTER_REQUIRED_MIN_BANDWIDTH);
     result = -1;
   }