summaryrefslogtreecommitdiff
path: root/ACE/examples/IPC_SAP/SOCK_SAP/README
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/IPC_SAP/SOCK_SAP/README')
-rw-r--r--ACE/examples/IPC_SAP/SOCK_SAP/README34
1 files changed, 18 insertions, 16 deletions
diff --git a/ACE/examples/IPC_SAP/SOCK_SAP/README b/ACE/examples/IPC_SAP/SOCK_SAP/README
index bbe0f20ce5a..f8c0145ef48 100644
--- a/ACE/examples/IPC_SAP/SOCK_SAP/README
+++ b/ACE/examples/IPC_SAP/SOCK_SAP/README
@@ -1,3 +1,5 @@
+$Id$
+
This directory contains groups of client and server test programs that
exercise the various C++ wrappers for sockets. In general, the test
programs do more or less the same thing -- the client establishes a
@@ -9,12 +11,12 @@ Unless noted differently, the server is implemented as an "iterative
server," i.e., it only deals with one client at a time. The following
describes each set of tests in more detail:
- . C-{inclient,inserver}.cpp -- This is basically a C code
- implementation that opens a connection to the server and
- sends all the data from the stdin using Internet domain
- sockets (i.e., TCP).
+ . C-{inclient,inserver}.cpp -- This is basically a C code
+ implementation that opens a connection to the server and
+ sends all the data from the stdin using Internet domain
+ sockets (i.e., TCP).
- . CPP-{inclient,inserver}.cpp -- This test is
+ . CPP-{inclient,inserver}.cpp -- This test is
a more sophisticated C++ wrapper version of the preceeding
"C" test using Internet domain sockets (i.e., TCP).
It allows you to test oneway and twoway socket communication
@@ -25,20 +27,20 @@ describes each set of tests in more detail:
version of CPP-inserver.cpp that illustrates additional
features of ACE, such as ACE_Svc_Handler.
- . CPP-inserver-poll.cpp -- This test illustrates how to
- write single-threaded concurrent servers using UNIX SVR4
- poll(). You can run this test using the CPP-inclient.cpp
- program as the oneway client.
+ . CPP-inserver-poll.cpp -- This test illustrates how to
+ write single-threaded concurrent servers using UNIX SVR4
+ poll(). You can run this test using the CPP-inclient.cpp
+ program as the oneway client.
- . CPP-{unclient,unserver}.cpp -- This test is basically
- a C++ wrapper version of the preceeding "C++" test using
- UNIX domain sockets. Note that this test only works
+ . CPP-{unclient,unserver}.cpp -- This test is basically
+ a C++ wrapper version of the preceeding "C++" test using
+ UNIX domain sockets. Note that this test only works
between a client and server process on the same machine.
- . FD-{unclient,inclient}.cpp -- This test illustrates
- how to pass file descriptors between a client and a
- concurrent server process on the same machine using the ACE
- C++ wrappers for UNIX domain sockets.
+ . FD-{unclient,inclient}.cpp -- This test illustrates
+ how to pass file descriptors between a client and a
+ concurrent server process on the same machine using the ACE
+ C++ wrappers for UNIX domain sockets.
For examples of the ACE SOCK_{Dgram,CODgram} and
SOCK_Dgram_{Mcast,Bcast} wrappers, please take a look in the