forked from premiere/premiere-libtorrent
added limewire to projects page and fixed some documentation typos
This commit is contained in:
parent
178ea9c519
commit
4cfc97f396
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
|
@ -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()
|
||||
|
|
|
@ -48,6 +48,16 @@ portable to most other desktops as
|
|||
well). Written by Christophe Dumez.</p>
|
||||
</div>
|
||||
<div class="entry container">
|
||||
<a class="reference external image-reference" href="http://www.limewire.com/"><img align="right" alt="limewire.png" class="align-right" src="limewire.png" /></a>
|
||||
<p><strong>Limewire</strong></p>
|
||||
<p><a class="reference external" href="http://www.limewire.com/">LimeWire</a> 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</p>
|
||||
</div>
|
||||
<div class="entry container">
|
||||
<a class="reference external image-reference" href="http://deluge-torrent.org/"><img align="right" alt="deluge.png" class="align-right" src="deluge.png" /></a>
|
||||
<p><strong>deluge torrent</strong></p>
|
||||
<p><a class="reference external" href="http://deluge-torrent.org/">deluge Torrent</a> is a more full-featured yet still lightweight bittorrent
|
||||
|
|
|
@ -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/
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue