event/FullyBufferedSocket: make WriteFromBuffer() protected

.. and rename it to Flush().
This commit is contained in:
Max Kellermann
2013-11-06 21:52:09 +01:00
parent ad27d06979
commit 5b213b0504
2 changed files with 4 additions and 4 deletions

View File

@@ -54,7 +54,7 @@ FullyBufferedSocket::DirectWrite(const void *data, size_t length)
}
bool
FullyBufferedSocket::WriteFromBuffer()
FullyBufferedSocket::Flush()
{
assert(IsDefined());
@@ -128,7 +128,7 @@ FullyBufferedSocket::OnSocketReady(unsigned flags)
if (flags & WRITE) {
assert(!output.IsEmpty());
if (!WriteFromBuffer())
if (!Flush())
return false;
}