*** empty log message ***

This commit is contained in:
Arvid Norberg
2005-06-16 15:41:04 +00:00
parent eca5300ebb
commit 0320e097d6
8 changed files with 158 additions and 44 deletions

View File

@@ -816,9 +816,6 @@ Its declaration looks like this::
bool is_piece_filtered(int index) const;
std::vector<bool> filtered_pieces() const;
int num_complete() const;
int num_incomplete() const;
bool has_metadata() const;
boost::filsystem::path save_path() const;
@@ -2014,6 +2011,26 @@ It is generated at severity level ``info``.
};
fastresume_rejected_alert
-------------------------
This alert is generated when a fastresume file has been passed to ``add_torrent`` but the
files on disk did not match the fastresume file. The string explaints the reason why the
resume file was rejected. It is generated at severity level ``warning``.
::
struct fastresume_rejected_alert: alert
{
fastresume_rejected_alert(torrent_handle const& h
, std::string const& msg);
virtual std::auto_ptr<alert> clone() const;
torrent_handle handle;
};
.. chat_message_alert
------------------