mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-16 23:22:31 +00:00
* Removed core::HashQueue, using the "hashing" view and a function in
core::Manager instead. * Added a new :rtorrent:hashing state so we can distinguish between initial hashing and manual rehashes. The former is cleared if the download is paused. * Added a hash failed flag to core::Download. This is used to skip entries in the hashing view that either failed to open or are in the process of being erased from DownloadList. * torrent::Bitfield::unset was incrementing, rather than decrementing, the m_set counter. * Replaced all torrent::internal_error's in rtorrent with torrent::client_error. * ^D now checks :rtorrent:state to decide whetever to stop or erase a download. Downloads queued for hashing will now stop rather than be deleted. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@688 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
@@ -47,7 +47,7 @@ CommandSchedulerItem::~CommandSchedulerItem() {
|
||||
void
|
||||
CommandSchedulerItem::enable(rak::timer t) {
|
||||
if (t == rak::timer())
|
||||
throw torrent::internal_error("CommandSchedulerItem::enable() t == rak::timer().");
|
||||
throw torrent::client_error("CommandSchedulerItem::enable() t == rak::timer().");
|
||||
|
||||
if (is_queued())
|
||||
disable();
|
||||
@@ -71,7 +71,7 @@ CommandSchedulerItem::next_time_scheduled() const {
|
||||
return rak::timer();
|
||||
|
||||
if (m_timeScheduled == rak::timer())
|
||||
throw torrent::internal_error("CommandSchedulerItem::next_time_scheduled() m_timeScheduled == rak::timer().");
|
||||
throw torrent::client_error("CommandSchedulerItem::next_time_scheduled() m_timeScheduled == rak::timer().");
|
||||
|
||||
rak::timer next = m_timeScheduled;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user