From: Guillermo Rodriguez Garcia Date: Sat, 11 Sep 1999 20:30:17 +0000 (+0000) Subject: little changes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/83802b0bd96499632d30fd1815368bef31c26f47 little changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3616 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/wxsocket/client.cpp b/samples/wxsocket/client.cpp index a3109c1c6c..4d14e9cb94 100644 --- a/samples/wxsocket/client.cpp +++ b/samples/wxsocket/client.cpp @@ -169,8 +169,6 @@ void MyFrame::OnExecOpenConnection(wxCommandEvent& WXUNUSED(evt)) "Connect ...", "localhost"); addr.Hostname(hname); addr.Service(3000); - sock->SetNotify(wxSOCKET_CONNECTION_FLAG | wxSOCKET_LOST_FLAG); - sock->SetNotify(TRUE); sock->Connect(addr, FALSE); sock->WaitOnConnect(10); sock->SetFlags(wxSocketBase::NONE); @@ -285,8 +283,10 @@ void MyFrame::OnExecTest1(wxCommandEvent& WXUNUSED(evt)) sock->SetEventHandler(*this, SKDEMO_SCK); sock->SetNotify(wxSOCKET_INPUT_FLAG | wxSOCKET_LOST_FLAG); sock->Notify(TRUE); - text_win->WriteText("Test 1B: sending bytes to the server\n"); + if (!sock->IsData()) + text_win->WriteText("No data to read yet (this is OK)\n"); + wxYield(); sock->Write((char *)buf, wxStrlen(buf)+1); text_win->WriteText("Waiting for incoming bytes (timeout = 2 sec) ..."); @@ -303,14 +303,19 @@ void MyFrame::OnExecTest1(wxCommandEvent& WXUNUSED(evt)) wxYield(); if (!m_good) { - text_win->WriteText("Timeout ! Failed.\n"); + text_win->WriteText("timeout ! Failed.\n"); sock->Close(); UpdateStatus(); } else - text_win->WriteText("Success."); + text_win->WriteText("event ! (no timeout).\n"); + + if (sock->IsData()) + text_win->WriteText("Data is available, as expected...\n"); sock->Read((char *)buf2, wxStrlen(buf)+1); + text_win->WriteText("Success!\n"); + dlgbox->Layout(); dlgbox->ShowModal();