diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-08-30 04:39:14 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-08-30 04:39:14 +0000 |
commit | b47135db50413d47e146de401c0ca7db44d05461 (patch) | |
tree | 50d84a606577e96f56d667b60b36fced92e65589 /examples | |
parent | 43a706b4060a33be3a8139c10660613875cb737f (diff) | |
download | ATCD-b47135db50413d47e146de401c0ca7db44d05461.tar.gz |
*** empty log message ***
Diffstat (limited to 'examples')
-rw-r--r-- | examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp b/examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp index 9e2f4f9c3cf..3dd9baf847d 100644 --- a/examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp +++ b/examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp @@ -400,7 +400,7 @@ Options::twoway_client_test (void *) // are sent. timer.start_incr (); - if (cli_stream.send (request, r_bytes) == -1) + if (cli_stream.send_n (request, r_bytes) == -1) { ACE_ERROR ((LM_ERROR, "(%P|%t) %p\n", @@ -408,8 +408,8 @@ Options::twoway_client_test (void *) result = -1; break; } - // Receive the reply from the server. It just echos back the - // reply. + // Receive the reply from the server. Normally, it just sends + // back 24 bytes, which is typical for an IIOP reply. else if (cli_stream.recv (request, r_bytes) <= 0) { ACE_ERROR ((LM_ERROR, |