Update of /cvsroot/wxlua/wxLua/modules/wxluasocket/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv26750/wxLua/modules/wxluasocket/include
Modified Files:
wxldserv.h
Log Message:
socket cleanup\
Index: wxldserv.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluasocket/include/wxldserv.h,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** wxldserv.h 8 Oct 2006 18:58:33 -0000 1.24
--- wxldserv.h 1 Dec 2006 23:40:27 -0000 1.25
***************
*** 172,182 ****
// Check if the socket is connected and if not send a
// wxEVT_WXLUA_DEBUGGER_DEBUGGEE_DISCONNECTED event with a socket error msg
! virtual bool CheckSocketConnected(bool send_event = true);
// Check if the input is true (eg. return of a socket read) and if not send a
// wxEVT_WXLUA_DEBUGGER_DEBUGGEE_DISCONNECTED with a read error msg
! virtual bool CheckSocketRead(bool read_ok);
// Check if the input is true (eg. return of a socket write) and if not send a
// wxEVT_WXLUA_DEBUGGER_DEBUGGEE_DISCONNECTED with a write error msg
! virtual bool CheckSocketWrite(bool write_ok);
// Send the event to this wxEvtHandler
--- 172,182 ----
// Check if the socket is connected and if not send a
// wxEVT_WXLUA_DEBUGGER_DEBUGGEE_DISCONNECTED event with a socket error msg
! virtual bool CheckSocketConnected(bool send_event = true, const wxString& msg = wxEmptyString);
// Check if the input is true (eg. return of a socket read) and if not send a
// wxEVT_WXLUA_DEBUGGER_DEBUGGEE_DISCONNECTED with a read error msg
! virtual bool CheckSocketRead(bool read_ok, const wxString& msg = wxEmptyString);
// Check if the input is true (eg. return of a socket write) and if not send a
// wxEVT_WXLUA_DEBUGGER_DEBUGGEE_DISCONNECTED with a write error msg
! virtual bool CheckSocketWrite(bool write_ok, const wxString& msg = wxEmptyString);
// Send the event to this wxEvtHandler
|