summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--cptc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/cptc.c b/cptc.c
index 485c39f..0396b71 100644
--- a/cptc.c
+++ b/cptc.c
@@ -56,6 +56,9 @@ void CPTC(const char *ip, in_port_t port)
         }
         printf("Connection from %s:%u!\n", inet_ntoa(peer.sin_addr), peer.sin_port);
 
+        /*
+         * TODO: Make it multithreaded
+         */
         CPTC_requestHandler(peerfd);
         close(peerfd);
     }