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 bool
FullyBufferedSocket::WriteFromBuffer() FullyBufferedSocket::Flush()
{ {
assert(IsDefined()); assert(IsDefined());
@ -128,7 +128,7 @@ FullyBufferedSocket::OnSocketReady(unsigned flags)
if (flags & WRITE) { if (flags & WRITE) {
assert(!output.IsEmpty()); assert(!output.IsEmpty());
if (!WriteFromBuffer()) if (!Flush())
return false; return false;
} }

View File

@ -44,14 +44,14 @@ public:
private: private:
ssize_t DirectWrite(const void *data, size_t length); ssize_t DirectWrite(const void *data, size_t length);
protected:
/** /**
* Send data from the output buffer to the socket. * Send data from the output buffer to the socket.
* *
* @return false if the socket has been closed * @return false if the socket has been closed
*/ */
bool WriteFromBuffer(); bool Flush();
protected:
/** /**
* @return false if the socket has been closed * @return false if the socket has been closed
*/ */