diff options
author | Ibrahim Mkusa <ibrahimmkusa@gmail.com> | 2017-04-02 02:15:53 -0400 |
---|---|---|
committer | Ibrahim Mkusa <ibrahimmkusa@gmail.com> | 2017-04-02 02:15:53 -0400 |
commit | 695286140d201ee6a7558b97411a58841112e9c0 (patch) | |
tree | 5d73031b1d6c55d53b5a17ace97d49ab3eb6d5df /feasibility_analysis/tcpvanilla/testdrive.md | |
parent | 170712a4cf344dbf2bd0e33f7f9af38893f3a21f (diff) |
testdrive.md to README.md. We can have nested *.mds
Diffstat (limited to 'feasibility_analysis/tcpvanilla/testdrive.md')
-rw-r--r-- | feasibility_analysis/tcpvanilla/testdrive.md | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/feasibility_analysis/tcpvanilla/testdrive.md b/feasibility_analysis/tcpvanilla/testdrive.md deleted file mode 100644 index b8e2883..0000000 --- a/feasibility_analysis/tcpvanilla/testdrive.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 - -``` |