X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fcc6dddd1f1da49f94767ff148eaa3f1d3ca9367..a0d8a3052817fef6eef27e9a6ab8802495a39db8:/src/common/sckstrm.cpp diff --git a/src/common/sckstrm.cpp b/src/common/sckstrm.cpp index 9224fe1765..c0b5332b04 100644 --- a/src/common/sckstrm.cpp +++ b/src/common/sckstrm.cpp @@ -19,6 +19,8 @@ #pragma hdrstop #endif +#if wxUSE_SOCKETS + #ifndef WX_PRECOMP #endif @@ -41,10 +43,15 @@ wxSocketOutputStream::~wxSocketOutputStream() wxOutputStream& wxSocketOutputStream::Write(const void *buffer, size_t size) { - m_o_socket->Write((const char *)buffer, size); + m_lastcount = m_o_socket->Write((const char *)buffer, size).LastCount(); return *this; } +size_t wxSocketOutputStream::OnSysWrite(const void *buffer, size_t size) +{ + return m_o_socket->Write((const char *)buffer, size).LastCount(); +} + // --------------------------------------------------------------------------- // wxSocketInputStream // --------------------------------------------------------------------------- @@ -60,19 +67,26 @@ wxSocketInputStream::~wxSocketInputStream() wxInputStream& wxSocketInputStream::Read(void *buffer, size_t size) { - m_i_socket->Read((char *)buffer, size); + m_lastcount = m_i_socket->Read((char *)buffer, size).LastCount(); return *this; } -// --------------------------------------------------------------------------- -// wxSocketStream (IO) -// --------------------------------------------------------------------------- -wxSocketStream::wxSocketStream(wxSocketBase& i_s, wxSocketBase& o_s) - : wxSocketInputStream(i_s), wxSocketOutputStream(o_s) +size_t wxSocketInputStream::OnSysRead(void *buffer, size_t size) { + return m_i_socket->Read((char *)buffer, size).LastCount(); } +// --------------------------------------------------------------------------- +// wxSocketStream +// --------------------------------------------------------------------------- + wxSocketStream::wxSocketStream(wxSocketBase& s) : wxSocketInputStream(s), wxSocketOutputStream(s) { } + +wxSocketStream::~wxSocketStream() +{ +} + +#endif