*** empty log message ***

This commit is contained in:
Arvid Norberg
2005-06-22 23:04:37 +00:00
parent 45e764fee4
commit 0d6a4de5aa
8 changed files with 44 additions and 6 deletions

View File

@@ -146,7 +146,8 @@ namespace libtorrent
void resume();
bool is_paused() const { return m_paused; }
void filter_piece(int index, bool download);
void filter_piece(int index, bool filter);
void filter_pieces(std::vector<bool> const& bitmask);
bool is_piece_filtered(int index) const;
void filtered_pieces(std::vector<bool>& bitmask) const;

View File

@@ -227,6 +227,7 @@ namespace libtorrent
// marks the piece with the given index as filtered
// it will not be downloaded
void filter_piece(int index, bool filter);
void filter_pieces(std::vector<bool> const& pieces);
bool is_piece_filtered(int index) const;
std::vector<bool> filtered_pieces() const;