diff options
author | Roger Dingledine <arma@torproject.org> | 2006-02-09 02:59:10 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-02-09 02:59:10 +0000 |
commit | 51dffee36c0911e049cc4679f9497535331b1b18 (patch) | |
tree | 7d2f7124f9417394a23f6aeb04b706b050e56029 /doc/tor.1.in | |
parent | 31f2705d9a8f2ddca67137ca0129d5ba949f953c (diff) | |
download | tor-51dffee36c0911e049cc4679f9497535331b1b18.tar.gz tor-51dffee36c0911e049cc4679f9497535331b1b18.zip |
MaxConn has been obsolete for a while now.
Document ConnLimit, which is the opposite.
svn:r5933
Diffstat (limited to 'doc/tor.1.in')
-rw-r--r-- | doc/tor.1.in | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/doc/tor.1.in b/doc/tor.1.in index b69c3ac3e4..fd97b31e9c 100644 --- a/doc/tor.1.in +++ b/doc/tor.1.in @@ -49,6 +49,17 @@ advertised bandwidth rate) can thus reduce the CPU demands on their server without impacting network performance. .LP .TP +\fBConnLimit \fR\fINUM\fP +The minimum number of file descriptors that must be available to +the Tor process before it will start. Tor will ask the OS for as +many file descriptors as the OS will allow (you can find this +by "ulimit -H -n"). If this number is less than ConnLimit, then +Tor will refuse to start. + +You probably don't need to adjust this. It has no effect on +Windows since that platform lacks getrlimit(). (Default: 1024) +.LP +.TP \fBControlPort \fR\fIPort\fP If set, Tor will accept connections from the same machine (localhost only) on this port, and allow those connections to control the Tor process using the @@ -153,11 +164,6 @@ option may appear more than once in a configuration file. Messages are sent to all the logs that match their severity level. .LP .TP -\fBMaxConn \fR\fINUM\fP -Maximum number of simultaneous sockets allowed. You probably don't need -to adjust this. (Default: 1024) -.LP -.TP \fBOutboundBindAddress \fR\fIIP\fP Make all outbound connections originate from the IP address specified. This is only useful when you have multiple network interfaces, and you want all |