// Copyright: (c)
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
-#pragma implementation "sckstrm.h"
-#endif
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
size_t wxSocketOutputStream::OnSysWrite(const void *buffer, size_t size)
{
- size_t ret;
-
- ret = m_o_socket->Write((const char *)buffer, size).LastCount();
+ size_t ret = m_o_socket->Write((const char *)buffer, size).LastCount();
- if (ret > 0)
- m_lasterror = wxStream_NOERROR;
- else
- m_lasterror = wxStream_READ_ERR;
+ m_lasterror = m_o_socket->Error() ? wxSTREAM_WRITE_ERROR : wxSTREAM_NO_ERROR;
return ret;
-
}
// ---------------------------------------------------------------------------
size_t wxSocketInputStream::OnSysRead(void *buffer, size_t size)
{
- size_t ret;
-
- ret = m_i_socket->Read((char *)buffer, size).LastCount();
+ size_t ret = m_i_socket->Read((char *)buffer, size).LastCount();
- if (ret > 0)
- m_lasterror = wxStream_NOERROR;
- else
- m_lasterror = wxStream_READ_ERR;
+ m_lasterror = m_i_socket->Error() ? wxSTREAM_READ_ERROR : wxSTREAM_NO_ERROR;
return ret;
}