git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6606
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// Create a new client
my_client = new MyClient;
// Create a new client
my_client = new MyClient;
- the_connection = (MyConnection *)my_client->MakeConnection(hostName, server, "IPC TEST");
- while ( !the_connection )
+ // suppress the log messages from MakeConnection()
- if ( wxMessageBox("Failed to make connection to server.\nRetry?",
- "Client Demo Error",
- wxICON_ERROR | wxYES_NO | wxCANCEL ) != wxYES )
+ wxLogNull nolog;
+ the_connection = (MyConnection *)my_client->MakeConnection(hostName, server, "IPC TEST");
+
+ while ( !the_connection )
- // no server
- return FALSE;
+ if ( wxMessageBox("Failed to make connection to server.\nRetry?",
+ "Client Demo Error",
+ wxICON_ERROR | wxYES_NO | wxCANCEL ) != wxYES )
+ {
+ // no server
+ return FALSE;
+ }
+
+ the_connection = (MyConnection *)my_client->MakeConnection(hostName, server, "IPC TEST");
-
- the_connection = (MyConnection *)my_client->MakeConnection(hostName, server, "IPC TEST");
}
if (!the_connection->StartAdvise("Item"))
}
if (!the_connection->StartAdvise("Item"))
m_text->AppendText(_("\n=== Test 1 begins ===\n"));
// Tell the server which test we are running
m_text->AppendText(_("\n=== Test 1 begins ===\n"));
// Tell the server which test we are running
m_sock->Write(&c, 1);
// Send some data and read it back. We know the size of the
m_sock->Write(&c, 1);
// Send some data and read it back. We know the size of the
m_text->AppendText(_("\n=== Test 2 begins ===\n"));
// Tell the server which test we are running
m_text->AppendText(_("\n=== Test 2 begins ===\n"));
// Tell the server which test we are running
m_sock->Write(&c, 1);
// Here we use ReadMsg and WriteMsg to send messages with
m_sock->Write(&c, 1);
// Here we use ReadMsg and WriteMsg to send messages with
m_text->AppendText(_("\n=== Test 3 begins ===\n"));
// Tell the server which test we are running
m_text->AppendText(_("\n=== Test 3 begins ===\n"));
// Tell the server which test we are running
m_sock->Write(&c, 1);
// This test also is similar to the first one but it sends a
m_sock->Write(&c, 1);
// This test also is similar to the first one but it sends a