Commit 4f795183d3071a7847113f40922d1b5b11fea217

Thomas de Grivel 2024-07-31T17:24:04

add message for client connection

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/lib/kc3/0.1/httpd.kc3 b/lib/kc3/0.1/httpd.kc3
index a586971..81bb49d 100644
--- a/lib/kc3/0.1/httpd.kc3
+++ b/lib/kc3/0.1/httpd.kc3
@@ -1,6 +1,7 @@
 defmodule HTTPd do
 
   def server_loop = fn (client) {
+    puts("HTTPd.server_loop: got client #{client}")
     ok = true
     while ok do
       req = HTTP.Request.buf_parse(client.buf_rw.r)