2003-10-23 01:00:57 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2003, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TORRENT_PEER_INFO_HPP_INCLUDED
|
|
|
|
#define TORRENT_PEER_INFO_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include <vector>
|
2004-01-25 19:18:36 +01:00
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
#include "libtorrent/socket.hpp"
|
|
|
|
#include "libtorrent/peer_id.hpp"
|
2004-01-25 19:18:36 +01:00
|
|
|
#include "libtorrent/size_type.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
struct peer_info
|
|
|
|
{
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
interesting = 0x1,
|
|
|
|
choked = 0x2,
|
|
|
|
remote_interested = 0x4,
|
2004-01-04 05:29:13 +01:00
|
|
|
remote_choked = 0x8,
|
2004-01-09 11:50:22 +01:00
|
|
|
supports_extensions = 0x10,
|
|
|
|
local_connection = 0x20
|
2003-10-23 01:00:57 +02:00
|
|
|
};
|
|
|
|
unsigned int flags;
|
|
|
|
address ip;
|
|
|
|
float up_speed;
|
|
|
|
float down_speed;
|
2004-01-25 19:18:36 +01:00
|
|
|
size_type total_download;
|
|
|
|
size_type total_upload;
|
2003-10-23 01:00:57 +02:00
|
|
|
peer_id id;
|
|
|
|
std::vector<bool> pieces;
|
2004-10-18 00:23:08 +02:00
|
|
|
bool seed; // true if this is a seed
|
2004-01-14 03:36:01 +01:00
|
|
|
int upload_limit; // from peer_connection
|
|
|
|
int upload_ceiling; // from the global upload limiter
|
2003-12-09 19:09:34 +01:00
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
size_type load_balancing;
|
2003-12-16 14:33:29 +01:00
|
|
|
|
2004-01-05 00:51:54 +01:00
|
|
|
// this is the number of requests
|
|
|
|
// we have sent to this peer
|
|
|
|
// that we haven't got a response
|
|
|
|
// for yet
|
|
|
|
int download_queue_length;
|
|
|
|
|
2004-01-14 12:46:26 +01:00
|
|
|
// this is the number of requests
|
|
|
|
// the peer has sent to us
|
|
|
|
// that we haven't sent yet
|
|
|
|
int upload_queue_length;
|
|
|
|
|
2003-12-09 19:09:34 +01:00
|
|
|
// the currently downloading piece
|
|
|
|
// if piece index is -1 all associated
|
|
|
|
// members are just set to 0
|
|
|
|
int downloading_piece_index;
|
|
|
|
int downloading_block_index;
|
|
|
|
int downloading_progress;
|
|
|
|
int downloading_total;
|
2003-10-23 01:00:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_PEER_INFO_HPP_INCLUDED
|