mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-09 03:32:29 +00:00
refactor
This commit is contained in:
@@ -80,7 +80,12 @@ SCgiTask::close() {
|
||||
|
||||
void
|
||||
SCgiTask::event_read() {
|
||||
int bytes = ::recv(m_fileDesc, m_buffer.data() + m_position, m_buffer.size() - m_position - (m_content_length == 0), 0);
|
||||
int read_length = m_buffer.size() - m_position;
|
||||
|
||||
if (m_content_length == 0)
|
||||
read_length--;
|
||||
|
||||
int bytes = ::recv(m_fileDesc, m_buffer.data() + m_position, read_length, 0);
|
||||
|
||||
if (bytes <= 0) {
|
||||
if (bytes == 0 || !(errno == EAGAIN || errno == EINTR))
|
||||
|
||||
Reference in New Issue
Block a user