aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Hermes/client.rkt1
-rw-r--r--README.md3
2 files changed, 3 insertions, 1 deletions
diff --git a/Hermes/client.rkt b/Hermes/client.rkt
index a86dc0a..e89f00e 100644
--- a/Hermes/client.rkt
+++ b/Hermes/client.rkt
@@ -43,6 +43,7 @@
(define (client port-no)
(parameterize ([current-custodian main-client-cust])
;; connect to server at port 8080
+
;; TODO catch error here
(define-values (in out) (tcp-connect hostname port-no)) ;; define values
;; binds to multiple values akin to unpacking tuples in python
diff --git a/README.md b/README.md
index a409747..91911a9 100644
--- a/README.md
+++ b/README.md
@@ -107,4 +107,5 @@ through the GUI.
I wrote the networking code i.e. code that allows communication between
clients through server. I wrote scheduling code responsible for queueing
fairly the client messages and broadcasting to the rest of connected
-clients. I also implemented the logic for handling /list, /whisper commands.
+clients. I also implemented the logic for handling /list, /whisper commands,
+dialogs for gui code and related utilities.