mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-14 14:12:31 +00:00
Fixed bug that cause exception to be thrown when erasing a download.
Moved to using SocketAddress within src/net. Enabled SocketManager. Changed API to use uint32_t instead of int. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@485 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
+13
-3
@@ -214,7 +214,7 @@
|
||||
<term>t | T</term>
|
||||
<listitem><para>
|
||||
Initiate tracker request. Use capital T to force the
|
||||
request, ignoring the "min interval".
|
||||
request, ignoring the "min interval" set by the tracker.
|
||||
</para></listitem>
|
||||
</varlistentry>
|
||||
|
||||
@@ -402,7 +402,7 @@
|
||||
<refsect1>
|
||||
<title>ADVANCED SETTINGS</title>
|
||||
<para>
|
||||
This list contains settings normal users shouldn't need to touch.
|
||||
This list contains settings users shouldn't need to touch.
|
||||
</para>
|
||||
|
||||
<variablelist>
|
||||
@@ -438,7 +438,17 @@
|
||||
<listitem><para>
|
||||
Number of files to simultaneously keep open. Libtorrent
|
||||
dynamically opens and closes files when mapping files to
|
||||
memory.
|
||||
memory. Defaults to 128.
|
||||
</para></listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>max_open_sockets = <replaceable>value</replaceable></term>
|
||||
<listitem><para>
|
||||
Number of sockets to simultaneously keep open. This value is
|
||||
set to be <emphasis>sysconf(_SC_OPEN_MAX) - 256</emphasis>
|
||||
at startup. This gives the client 128 sockets to use as it
|
||||
wishes.
|
||||
</para></listitem>
|
||||
</varlistentry>
|
||||
|
||||
|
||||
+4
-1
@@ -62,7 +62,10 @@
|
||||
#hash_max_tries = 10
|
||||
|
||||
# Max number of files to keep open simultaniously.
|
||||
#max_open_files = 100
|
||||
#max_open_files = 128
|
||||
|
||||
# Number of sockets to simultaneously keep open.
|
||||
#max_open_sockets = <no default>
|
||||
|
||||
# Dump data received from trackers to the files "./tracker_dump.<time>".
|
||||
#tracker_dump = no
|
||||
|
||||
Reference in New Issue
Block a user