X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6097c3a28a968e4acbdbee90072cc3f4ee65ab74..015e69f36dfbc469eef59456f973d0567e865d70:/samples/ipc/client.cpp?ds=inline diff --git a/samples/ipc/client.cpp b/samples/ipc/client.cpp index 8c184d4d0b..9b694cc696 100644 --- a/samples/ipc/client.cpp +++ b/samples/ipc/client.cpp @@ -74,29 +74,37 @@ MyClient *my_client ; // main frame bool MyApp::OnInit() { - wxString server = "4242"; - wxString hostName = wxGetHostName(); + // service name (DDE classes) or port number (TCP/IP based classes) + wxString service = "4242"; + + // ignored under DDE, host name in TCP/IP based classes + wxString hostName = "localhost"; if (argc > 1) - server = argv[1]; + service = argv[1]; if (argc > 2) hostName = argv[2]; // 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, service, "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, service, "IPC TEST"); } - - the_connection = (MyConnection *)my_client->MakeConnection(hostName, server, "IPC TEST"); } if (!the_connection->StartAdvise("Item"))