1998-09-06 18:28:00 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: sckstrm.h
|
|
|
|
// Purpose: wxSocket*Stream
|
|
|
|
// Author: Guilhem Lavaux
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/07/97
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c)
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __SCK_STREAM_H__
|
|
|
|
#define __SCK_STREAM_H__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/stream.h"
|
1999-06-15 20:21:59 +00:00
|
|
|
|
|
|
|
#if wxUSE_SOCKETS && wxUSE_STREAMS
|
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
#include "wx/socket.h"
|
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
class WXDLLEXPORT wxSocketOutputStream : public wxOutputStream
|
1998-09-06 18:28:00 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxSocketOutputStream(wxSocketBase& s);
|
1998-10-14 17:36:50 +00:00
|
|
|
~wxSocketOutputStream();
|
1998-09-06 18:28:00 +00:00
|
|
|
|
1999-08-02 04:44:01 +00:00
|
|
|
off_t SeekO( off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
|
1998-09-07 18:04:27 +00:00
|
|
|
{ return -1; }
|
1999-08-02 04:44:01 +00:00
|
|
|
off_t TellO() const
|
1998-09-07 18:04:27 +00:00
|
|
|
{ return -1; }
|
1998-09-06 18:28:00 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
wxSocketBase *m_o_socket;
|
1999-02-27 21:01:05 +00:00
|
|
|
|
|
|
|
size_t OnSysWrite(const void *buffer, size_t bufsize);
|
1998-09-06 18:28:00 +00:00
|
|
|
};
|
|
|
|
|
1998-10-14 17:36:50 +00:00
|
|
|
class WXDLLEXPORT wxSocketInputStream : public wxInputStream
|
1998-09-06 18:28:00 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxSocketInputStream(wxSocketBase& s);
|
|
|
|
~wxSocketInputStream();
|
|
|
|
|
1999-08-02 04:44:01 +00:00
|
|
|
off_t SeekI( off_t WXUNUSED(pos), wxSeekMode WXUNUSED(mode) )
|
1998-09-07 18:04:27 +00:00
|
|
|
{ return -1; }
|
1999-08-02 04:44:01 +00:00
|
|
|
off_t TellI() const
|
1998-09-07 18:04:27 +00:00
|
|
|
{ return -1; }
|
1998-09-06 18:28:00 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
wxSocketBase *m_i_socket;
|
1999-02-27 21:01:05 +00:00
|
|
|
|
|
|
|
size_t OnSysRead(void *buffer, size_t bufsize);
|
1998-09-06 18:28:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxSocketStream : public wxSocketInputStream,
|
1999-07-28 03:38:12 +00:00
|
|
|
public wxSocketOutputStream
|
1998-10-14 17:36:50 +00:00
|
|
|
{
|
1998-09-06 18:28:00 +00:00
|
|
|
public:
|
|
|
|
wxSocketStream(wxSocketBase& s);
|
1998-10-14 17:36:50 +00:00
|
|
|
~wxSocketStream();
|
1998-09-06 18:28:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1999-06-15 20:21:59 +00:00
|
|
|
// wxUSE_SOCKETS && wxUSE_STREAMS
|
|
|
|
|
|
|
|
#endif
|
1999-07-22 17:51:54 +00:00
|
|
|
// __SCK_STREAM_H__
|