mirror of
https://github.com/inspircd/inspircd.git
synced 2025-04-22 07:51:29 -04:00
Fix high-bandwidth stuff with inspsocket+ssl, and eagain
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6699 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
70f57afea5
commit
636f6a023f
@ -472,7 +472,7 @@ bool InspSocket::FlushWriteBuffer()
|
||||
int result = Instance->Config->GetIOHook(this)->OnRawSocketWrite(this->fd, outbuffer[0].c_str(), outbuffer[0].length());
|
||||
if (result > 0)
|
||||
{
|
||||
if ((unsigned int)result == outbuffer[0].length())
|
||||
if ((unsigned int)result >= outbuffer[0].length())
|
||||
{
|
||||
outbuffer.pop_front();
|
||||
}
|
||||
@ -510,7 +510,7 @@ bool InspSocket::FlushWriteBuffer()
|
||||
int result = write(this->fd,outbuffer[0].c_str(),outbuffer[0].length());
|
||||
if (result > 0)
|
||||
{
|
||||
if ((unsigned int)result == outbuffer[0].length())
|
||||
if ((unsigned int)result >= outbuffer[0].length())
|
||||
{
|
||||
/* The whole block was written (usually a line)
|
||||
* Pop the block off the front of the queue,
|
||||
|
Loading…
x
Reference in New Issue
Block a user