reverted some bad changes
This commit is contained in:
parent
45864b15ec
commit
373b18233a
|
@ -1106,6 +1106,13 @@ namespace libtorrent
|
||||||
|
|
||||||
picker.mark_as_finished(block_finished, m_remote);
|
picker.mark_as_finished(block_finished, m_remote);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
t->get_policy().block_finished(*this, block_finished);
|
||||||
|
send_block_requests();
|
||||||
|
}
|
||||||
|
catch (std::exception const&) {}
|
||||||
|
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -1160,13 +1167,6 @@ namespace libtorrent
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
t->get_policy().block_finished(*this, block_finished);
|
|
||||||
send_block_requests();
|
|
||||||
}
|
|
||||||
catch (std::exception const&) {}
|
|
||||||
|
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
}
|
}
|
||||||
catch (std::exception const& e)
|
catch (std::exception const& e)
|
||||||
|
@ -1382,7 +1382,7 @@ namespace libtorrent
|
||||||
|
|
||||||
void peer_connection::send_block_requests()
|
void peer_connection::send_block_requests()
|
||||||
{
|
{
|
||||||
// INVARIANT_CHECK;
|
INVARIANT_CHECK;
|
||||||
|
|
||||||
if (has_peer_choked()) return;
|
if (has_peer_choked()) return;
|
||||||
|
|
||||||
|
@ -2157,8 +2157,6 @@ namespace libtorrent
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
check_postcondition post_checker_(t, false);
|
|
||||||
|
|
||||||
if (!m_in_constructor && t->connection_for(remote()) != this)
|
if (!m_in_constructor && t->connection_for(remote()) != this)
|
||||||
{
|
{
|
||||||
assert(false);
|
assert(false);
|
||||||
|
|
Loading…
Reference in New Issue