some cleanup

This commit is contained in:
orignal 2014-10-01 21:18:41 -04:00
parent 30233bed77
commit ef2932a234
6 changed files with 10 additions and 10 deletions

View file

@ -540,7 +540,7 @@ namespace util
RunRequest();
}
else // follow-on
m_Stream->Send ((uint8_t *)m_Buffer, bytes_transferred, 10);
m_Stream->Send ((uint8_t *)m_Buffer, bytes_transferred);
Receive ();
}
/*else if (ecode != boost::asio::error::operation_aborted)
@ -879,7 +879,7 @@ namespace util
m_Stream = i2p::stream::CreateStream (*leaseSet);
if (m_Stream)
{
m_Stream->Send ((uint8_t *)buf, len, 10);
m_Stream->Send ((uint8_t *)buf, len);
AsyncStreamReceive ();
}
}