wxSocketServer test added to console sample

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6741 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-03-15 19:19:44 +00:00
parent 669f7a111f
commit 8dfea369ea
6 changed files with 510 additions and 481 deletions

View File

@@ -732,6 +732,59 @@ static void TestSocketServer()
{
puts("ERROR: failed to bind");
}
for ( ;; )
{
puts("Server: waiting for connection...");
wxSocketBase *socket = server->Accept();
if ( !socket )
{
puts("ERROR: wxSocketServer::Accept() failed.");
break;
}
puts("Server: got a client.");
wxString s;
char ch = '\0';
for ( ;; )
{
if ( socket->Read(&ch, sizeof(ch)).Error() )
{
puts("ERROR: in wxSocket::Read.");
break;
}
if ( ch == '\r' )
continue;
if ( ch == '\n' )
break;
s += ch;
}
if ( ch != '\n' )
{
break;
}
printf("Server: got '%s'.\n", s.c_str());
if ( s == _T("bye") )
{
delete socket;
break;
}
socket->Write(s.MakeUpper().c_str(), s.length());
socket->Write("\r\n", 2);
printf("Server: wrote '%s'.\n", s.c_str());
delete socket;
}
}
static void TestSocketClient()
@@ -2553,12 +2606,13 @@ int main(int argc, char **argv)
#endif // TEST_MIME
#ifdef TEST_SOCKETS
if ( 1 )
TestSocketServer();
if ( 0 )
{
TestSocketServer();
TestSocketClient();
}
TestProtocolFtp();
}
#endif // TEST_SOCKETS
#ifdef TEST_TIMER