try closest floodfills sequentially

This commit is contained in:
orignal 2014-10-14 20:52:40 -04:00
parent 8a12b71010
commit 9b2e275c45
4 changed files with 61 additions and 82 deletions

View file

@ -520,7 +520,7 @@ namespace util
m_Stream = nullptr;
}
m_Socket->close ();
delete this;
//delete this;
}
void HTTPConnection::Receive ()
@ -544,8 +544,8 @@ namespace util
m_Stream->Send ((uint8_t *)m_Buffer, bytes_transferred);
Receive ();
}
/*else if (ecode != boost::asio::error::operation_aborted)
Terminate ();*/
else if (ecode != boost::asio::error::operation_aborted)
Terminate ();
}
void HTTPConnection::RunRequest ()