/usr/include/torrent/download.h is in libtorrent-dev 0.13.6-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | // libTorrent - BitTorrent library
// Copyright (C) 2005-2011, Jari Sundell
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// In addition, as a special exception, the copyright holders give
// permission to link the code of portions of this program with the
// OpenSSL library under certain conditions as described in each
// individual source file, and distribute linked combinations
// including the two.
//
// You must obey the GNU General Public License in all respects for
// all of the code used other than OpenSSL. If you modify file(s)
// with this exception, you may extend this exception to your version
// of the file(s), but you are not obligated to do so. If you do not
// wish to do so, delete this exception statement from your version.
// If you delete this exception statement from all source files in the
// program, then also delete it here.
//
// Contact: Jari Sundell <jaris@ifi.uio.no>
//
// Skomakerveien 33
// 3185 Skoppum, NORWAY
#ifndef LIBTORRENT_DOWNLOAD_H
#define LIBTORRENT_DOWNLOAD_H
#include <list>
#include <vector>
#include <string>
#include <torrent/common.h>
#include <torrent/peer/peer.h>
namespace torrent {
class ConnectionList;
class DownloadInfo;
class DownloadMain;
class download_data;
class TrackerController;
// Download is safe to copy and destory as it is just a pointer to an
// internal class.
class LIBTORRENT_EXPORT Download {
public:
static const uint32_t numwanted_diabled = ~uint32_t();
// Start and open flags can be stored in the same integer, same for
// stop and close flags.
static const int open_enable_fallocate = (1 << 0);
static const int start_no_create = (1 << 1);
static const int start_keep_baseline = (1 << 2);
static const int start_skip_tracker = (1 << 3);
static const int stop_skip_tracker = (1 << 0);
Download(DownloadWrapper* d = NULL) : m_ptr(d) {}
const DownloadInfo* info() const;
const download_data* data() const;
// Not active atm. Opens and prepares/closes the files.
void open(int flags = 0);
void close(int flags = 0);
// When 'tryQuick' is true, it will only check if the chunks can be
// mmaped and stops if one is encountered. If it doesn't find any
// mappable chunks it will return true to indicate that it is
// finished and a hash done signal has been queued.
//
// Chunk ranges that have valid resume data won't be checked.
bool hash_check(bool tryQuick);
void hash_stop();
// Start/stop the download. The torrent must be open.
void start(int flags = 0);
void stop(int flags = 0);
// Does not check if the download has been removed.
bool is_valid() const { return m_ptr; }
bool is_hash_checked() const;
bool is_hash_checking() const;
void set_pex_enabled(bool enabled);
Object* bencode();
const Object* bencode() const;
TrackerController* tracker_controller() const;
TrackerList* tracker_list() const;
FileList* file_list() const;
PeerList* peer_list();
const PeerList* peer_list() const;
const TransferList* transfer_list() const;
ConnectionList* connection_list();
const ConnectionList* connection_list() const;
// Bytes completed.
uint64_t bytes_done() const;
uint32_t chunks_hashed() const;
const uint8_t* chunks_seen() const;
// Set the number of finished chunks for closed torrents.
void set_chunks_done(uint32_t chunks_done, uint32_t chunks_wanted);
// Use the below to set the resume data and what chunk ranges need
// to be hash checked. If they arn't called then by default it will
// use an cleared bitfield and check the whole range.
//
// These must be called when is_open, !is_checked and !is_checking.
void set_bitfield(bool allSet);
void set_bitfield(uint8_t* first, uint8_t* last);
static const int update_range_recheck = (1 << 0);
static const int update_range_clear = (1 << 1);
void update_range(int flags, uint32_t first, uint32_t last);
// Temporary hack for syncing chunks to disk before hash resume is
// saved.
void sync_chunks();
uint32_t peers_complete() const;
uint32_t peers_accounted() const;
uint32_t peers_currently_unchoked() const;
uint32_t peers_currently_interested() const;
uint32_t size_pex() const;
uint32_t max_size_pex() const;
bool accepting_new_peers() const;
uint32_t uploads_max() const;
void set_uploads_max(uint32_t v);
uint32_t uploads_min() const;
void set_uploads_min(uint32_t v);
uint32_t downloads_max() const;
void set_downloads_max(uint32_t v);
uint32_t downloads_min() const;
void set_downloads_min(uint32_t v);
void set_upload_throttle(Throttle* t);
void set_download_throttle(Throttle* t);
// Some temporary functions that are routed to
// TrackerManager... Clean this up.
void send_completed();
void manual_request(bool force);
void manual_cancel();
typedef enum {
CONNECTION_LEECH,
CONNECTION_SEED,
CONNECTION_INITIAL_SEED,
CONNECTION_METADATA,
} ConnectionType;
ConnectionType connection_type() const;
void set_connection_type(ConnectionType t);
typedef enum {
} HeuristicType;
HeuristicType upload_choke_heuristic() const;
void set_upload_choke_heuristic(HeuristicType t);
HeuristicType download_choke_heuristic() const;
void set_download_choke_heuristic(HeuristicType t);
// Call this when you want the modifications of the download priorities
// in the entries to take effect. It is slightly expensive as it rechecks
// all the peer bitfields to see if we are still interested.
void update_priorities();
void add_peer(const sockaddr* addr, int port);
DownloadWrapper* ptr() { return m_ptr; }
DownloadMain* main();
private:
DownloadWrapper* m_ptr;
};
}
#endif
|