diff options
author | Ibrahim Mkusa <ibrahimmkusa@gmail.com> | 2017-03-29 23:59:07 -0400 |
---|---|---|
committer | Ibrahim Mkusa <ibrahimmkusa@gmail.com> | 2017-03-29 23:59:07 -0400 |
commit | bb0e49db30c0aad4c1cc4f0b1df0e2e33a5a70af (patch) | |
tree | 177775afc70befbc1bb9cadc43696202d59a3b7a /feasibility_analysis/testdrive.md | |
parent | 847a5d2b4307113c9c198c9d9d1958f2074a500d (diff) |
Added testdrive.md to describe experiments for feasibility and
reorganized some files
Diffstat (limited to 'feasibility_analysis/testdrive.md')
-rw-r--r-- | feasibility_analysis/testdrive.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/feasibility_analysis/testdrive.md b/feasibility_analysis/testdrive.md new file mode 100644 index 0000000..b8e2883 --- /dev/null +++ b/feasibility_analysis/testdrive.md @@ -0,0 +1,20 @@ +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 + +``` |