diff options
author | Roger Dingledine <arma@torproject.org> | 2006-02-09 02:59:26 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-02-09 02:59:26 +0000 |
commit | dbea401305b7c6b5bcbcf53d59720e6a9eca7a05 (patch) | |
tree | be3c2f27e3c514719e274ce3f856f7fb957dea1f /src/or | |
parent | 51dffee36c0911e049cc4679f9497535331b1b18 (diff) | |
download | tor-dbea401305b7c6b5bcbcf53d59720e6a9eca7a05.tar tor-dbea401305b7c6b5bcbcf53d59720e6a9eca7a05.tar.gz |
correct the comments that don't realize it's the opposite
svn:r5934
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/or.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h index 75642a063..0ef7e00e4 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1267,8 +1267,8 @@ typedef struct { * versions? */ int ClientOnly; /**< Boolean: should we never evolve into a server role? */ int NoPublish; /**< Boolean: should we never publish a descriptor? */ - int ConnLimit; /**< Requested maximum number of simultaneous connections. */ - int _ConnLimit; /**< Actual maximum number of simultaneous connections. */ + int ConnLimit; /**< Demanded minimum number of simultaneous connections. */ + int _ConnLimit; /**< Maximum allowed number of simultaneous connections. */ int RunAsDaemon; /**< If true, run in the background. (Unix only) */ int FascistFirewall; /**< Whether to prefer ORs reachable on open ports. */ smartlist_t *FirewallPorts; /**< Which ports our firewall allows |