*** empty log message ***

This commit is contained in:
Arvid Norberg
2004-10-17 22:23:08 +00:00
parent c48f64c2ec
commit e9ef2b56a5
7 changed files with 17 additions and 4 deletions

View File

@@ -1238,6 +1238,7 @@ It contains the following fields::
size_type total_upload;
peer_id id;
std::vector<bool> pieces;
bool seed;
int upload_limit;
int upload_ceiling;
@@ -1293,6 +1294,8 @@ is using. See identify_client()_
in the torrent. Each boolean tells you if the peer has that piece (if it's set to true)
or if the peer miss that piece (set to false).
``seed`` is true if this peer is a seed.
``upload_limit`` is the number of bytes per second we are allowed to send to this
peer every second. It may be -1 if there's no limit. The upload limits of all peers
should sum up to the upload limit set by ``session::set_upload_limit``.