Socket sample:

- Test 3 added to test large transfers involving multiple low level calls.
- Stub for datagram socket tests (not yet in place)

IPC sample:
- Client no longer needs to use GetHostName for DDE and LocalHost for IPC;
now it can just use GetHostName for both (because now the IPC server binds to
INADDR_ANY instead of binding to localhost).
- Fixed once again another warning about wxString objects that can't be
passed through '...'


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5563 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guillermo Rodriguez Garcia
2000-01-21 03:16:02 +00:00
parent 636c47a794
commit 6097c3a28a
4 changed files with 107 additions and 34 deletions

View File

@@ -75,11 +75,7 @@ MyClient *my_client ;
bool MyApp::OnInit()
{
wxString server = "4242";
#if wxUSE_DDE_FOR_SAMPLE
wxString hostName = wxGetHostName();
#else
wxString hostName = "localhost";
#endif
if (argc > 1)
server = argv[1];