summaryrefslogtreecommitdiff
path: root/examples/Connection/non_blocking/README
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Connection/non_blocking/README')
-rw-r--r--examples/Connection/non_blocking/README24
1 files changed, 0 insertions, 24 deletions
diff --git a/examples/Connection/non_blocking/README b/examples/Connection/non_blocking/README
deleted file mode 100644
index 78fb023b99e..00000000000
--- a/examples/Connection/non_blocking/README
+++ /dev/null
@@ -1,24 +0,0 @@
-This code illustrates how to write a single set of source code (for a
-client and server) and then parameterize in the desired IPC mechanism.
-In this case, the IPC mechanisms include sockets, TLI, and STREAM
-pipes. The single set of source code is located in CPP-acceptor.cpp
-(which is the server) and CPP-connector.cpp (which is the non-blocking
-client).
-
-Here's how I typically run these tests:
-
-% test_sock_acceptor localhost:10005 &
-starting up daemon ./test_sock_acceptor
-starting server addr 127.0.0.1:10007 on handle 5
-client addr 127.0.0.1:10003 on handle 6
-hello
-
-% test_sock_connector localhost:10005
-starting up daemon ./test_sock_connector
-activating 5
-in handle_output
-please enter input..: hello
-in handle_output
-
-There are a number of other options that you can provide. Please see
-the source code for details.