diff --git a/docs/limewire.png b/docs/limewire.png new file mode 100644 index 000000000..a45d37fc9 Binary files /dev/null and b/docs/limewire.png differ diff --git a/docs/manual.rst b/docs/manual.rst index 3dbf59b21..b1040ea61 100644 --- a/docs/manual.rst +++ b/docs/manual.rst @@ -3712,10 +3712,11 @@ thread catches up. Setting this too low will severly limit your download rate. delay responding to a protocol handshake. If no response is received within this time, the connection is closed. -``use_dht_as_fallback`` determines how the DHT is used. If this is true -(which it is by default), the DHT will only be used for torrents where -all trackers in its tracker list has failed. Either by an explicit error -message or a time out. +``use_dht_as_fallback`` determines how the DHT is used. If this is true, +the DHT will only be used for torrents where all trackers in its tracker +list has failed. Either by an explicit error message or a time out. This +is false by default, which means the DHT is used by default regardless of +if the trackers fail or not. ``free_torrent_hashes`` determines whether or not the torrent's piece hashes are kept in memory after the torrent becomes a seed or not. If it is set to @@ -6079,7 +6080,7 @@ The default storage moves the single file or the directory of the torrent. Before moving the files, any open file handles may have to be closed, like ``release_files()``. -Returning ``true`` indicates an error occurred. +Returning ``false`` indicates an error occurred. verify_resume_data() diff --git a/docs/projects.html b/docs/projects.html index 72af962a2..e72e2fee1 100644 --- a/docs/projects.html +++ b/docs/projects.html @@ -48,6 +48,16 @@ portable to most other desktops as well). Written by Christophe Dumez.

+limewire.png +

Limewire

+

LimeWire is the world's most popular peer-to-peer file-sharing +program. With over 70 million unique monthly users, the software +is downloaded hundreds of thousands of times every day and boasts +millions of active users at any given moment. LimeWire uses the +BitTorrent protocol and the Gnutella network to provide an +unparalleled searches and download speed to the user

+
+
deluge.png

deluge torrent

deluge Torrent is a more full-featured yet still lightweight bittorrent diff --git a/docs/projects.rst b/docs/projects.rst index b4cbb71df..90a88d2c1 100644 --- a/docs/projects.rst +++ b/docs/projects.rst @@ -37,6 +37,22 @@ project listed here, let me_ know. .. _qBittorrent: http://www.qbittorrent.org/ +.. container:: entry + + .. image:: limewire.png + :align: right + :target: Limewire_ + + **Limewire** + + LimeWire_ is the world's most popular peer-to-peer file-sharing + program. With over 70 million unique monthly users, the software + is downloaded hundreds of thousands of times every day and boasts + millions of active users at any given moment. LimeWire uses the + BitTorrent protocol and the Gnutella network to provide an + unparalleled searches and download speed to the user + + .. container:: entry .. image:: deluge.png @@ -372,6 +388,7 @@ for Windows and Mac OSX. .. _BitsCast: http://www.bitscast.com/software/ .. _BitSlug: http://bitslug.sourceforge.net/ .. _`deluge Torrent`: http://deluge-torrent.org/ +.. _Limewire: http://www.limewire.com/ .. _BLOBbox: http://www.tvblob.com .. _Halite: http://www.binarynotions.com/halite-bittorrent-client .. _DelCo: http://delco.cs.tut.fi/ diff --git a/src/storage.cpp b/src/storage.cpp index f1ffb69c2..8eb7365c7 100644 --- a/src/storage.cpp +++ b/src/storage.cpp @@ -1465,7 +1465,7 @@ ret: bool release_files() { return false; } bool delete_files() { return false; } bool initialize(bool allocate_files) { return false; } - bool move_storage(fs::path save_path) { return false; } + bool move_storage(fs::path save_path) { return true; } int read(char* buf, int slot, int offset, int size) { return size; } int write(char const* buf, int slot, int offset, int size) { return size; } int readv(file::iovec_t const* bufs, int slot, int offset, int num_bufs)