diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-09-02 00:09:14 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-09-02 00:09:14 +0000 |
commit | 70967adf417d6c4345add005af329303dc06c689 (patch) | |
tree | 881c7d85f5aa288f0741dc130332a54e4f77176e /examples/IPC_SAP | |
parent | b49576fee6c28e5731bd5bcdb6ecd27d810331b9 (diff) | |
download | ATCD-70967adf417d6c4345add005af329303dc06c689.tar.gz |
*** empty log message ***
Diffstat (limited to 'examples/IPC_SAP')
-rw-r--r-- | examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp | 4 | ||||
-rw-r--r-- | examples/IPC_SAP/SOCK_SAP/CPP-inserver.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp b/examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp index 3dd9baf847d..ada06bb2008 100644 --- a/examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp +++ b/examples/IPC_SAP/SOCK_SAP/CPP-inclient.cpp @@ -312,7 +312,7 @@ Options::oneway_client_test (void *) ACE_SOCK_Stream cli_stream; // Add 1 to the port to trigger the oneway test! - void *request = options->shared_client_test (options->port () + 1, + char *request = options->shared_client_test (options->port () + 1, cli_stream); // This variable is allocated off the stack to obviate the need for // locking. @@ -361,7 +361,7 @@ Options::twoway_client_test (void *) ACE_SOCK_Stream cli_stream; - void *request = options->shared_client_test (options->port (), + char *request = options->shared_client_test (options->port (), cli_stream); // This variable is allocated off the stack to obviate the need for diff --git a/examples/IPC_SAP/SOCK_SAP/CPP-inserver.cpp b/examples/IPC_SAP/SOCK_SAP/CPP-inserver.cpp index 9609cf49c81..856eb60a568 100644 --- a/examples/IPC_SAP/SOCK_SAP/CPP-inserver.cpp +++ b/examples/IPC_SAP/SOCK_SAP/CPP-inserver.cpp @@ -64,7 +64,7 @@ twoway_server (void *arg) size_t total_bytes = 0; size_t message_count = 0; - void *request; + char *request; // Read data from client (terminate on error). @@ -179,7 +179,7 @@ oneway_server (void *arg) size_t total_bytes = 0; size_t message_count = 0; - void *request; + char *request; // Read data from client (terminate on error). |