aboutsummaryrefslogtreecommitdiff
path: root/feasibility_analysis/tcpvanilla/README.md
diff options
context:
space:
mode:
authorDouglas-Richardson <Doug116654@gmail.com>2017-04-19 18:03:24 -0400
committerDouglas-Richardson <Doug116654@gmail.com>2017-04-19 18:03:24 -0400
commit5e3bdbeeb4cf32a8a937f3e2f018eae4f4dda286 (patch)
treefce846dfbfc7b7633e5aeb20a504891c224ececf /feasibility_analysis/tcpvanilla/README.md
parentfe734a889397a9b0bbc55a997049d44166f18eae (diff)
parent95f7e7443363f21cda927b1446271d5008c439d6 (diff)
Merge remote-tracking branch 'refs/remotes/origin/master' into grape
Diffstat (limited to 'feasibility_analysis/tcpvanilla/README.md')
-rw-r--r--feasibility_analysis/tcpvanilla/README.md20
1 files changed, 0 insertions, 20 deletions
diff --git a/feasibility_analysis/tcpvanilla/README.md b/feasibility_analysis/tcpvanilla/README.md
deleted file mode 100644
index b8e2883..0000000
--- a/feasibility_analysis/tcpvanilla/README.md
+++ /dev/null
@@ -1,20 +0,0 @@
-a simple experiment on communication via tcp ports
-
-a server runs continously servicing clients. Clients connect, send a message, and
-server replies with a message. Message should appear in each separate REPL area
-prompt
-
-run server.rkt in a REPL
-```
-,en server.rkt
-(define stop (serve 8080)) ;; starts serve listening at port 8080
-(stop) ;; to stop server and free the ports
-
-```
-
-run client.rkt in a separate REPL
-```
-,en client.rkt
-(define stop (client 8080)) ;; starts client talking to server at port 8080
-
-```