Added debuf printf()s to GSocket,

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6640 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2000-03-12 21:26:48 +00:00
parent 6e7b6cc6f7
commit 856bc99a57
5 changed files with 15 additions and 3 deletions

View File

@@ -287,6 +287,7 @@ void MyFrame::Test3(wxSocketBase *sock)
sock->SetFlags(wxSOCKET_WAITALL);
sock->Read(&len, 1);
buf = new char[len * 1024];
sock->Read(buf, len * 1024);
sock->Write(buf, len * 1024);