summaryrefslogtreecommitdiff
path: root/examples/IPC_SAP/SOCK_SAP/README
diff options
context:
space:
mode:
Diffstat (limited to 'examples/IPC_SAP/SOCK_SAP/README')
-rw-r--r--examples/IPC_SAP/SOCK_SAP/README38
1 files changed, 0 insertions, 38 deletions
diff --git a/examples/IPC_SAP/SOCK_SAP/README b/examples/IPC_SAP/SOCK_SAP/README
deleted file mode 100644
index 9f154faf6de..00000000000
--- a/examples/IPC_SAP/SOCK_SAP/README
+++ /dev/null
@@ -1,38 +0,0 @@
-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
-connection with the server and then transfers data to the server,
-which keeps printing the data until EOF is reached (e.g., user types
-^D).
-
-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.cpp/C-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.cpp/CPP-server.cpp -- This test is basically
- a C++ wrapper version of the preceeding "C" test using
- Internet domain sockets (i.e., TCP).
-
- . CPP-unclient.cpp/CPP-unserver.cpp -- This test is basically
- a C++ wrapper version of the preceeding "C++" test using
- UNIX domain sockets.
-
- . FD-unclient.cpp/FD-inclient.cpp -- This test illustrates
- how to pass file descriptors between two processes on the
- same machine using the ACE C++ wrappers for UNIX domain
- sockets.
-
- . 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 client.
-
-For examples of the ACE SOCK_{Dgram,CODgram} and
-SOCK_Dgram_{Mcast,Bcast} wrappers, please take a look in the
-./examples/Reactor/{Dgram,Multicast,Ntalker} directories.
-