From 780881ab124fd20ec750ae7aa0eb22f3f0e2d253 Mon Sep 17 00:00:00 2001 From: buffet Date: Sun, 7 Oct 2018 12:43:21 +0200 Subject: [PATCH] Added TODO --- lit/kiwmi.lit | 1 + 1 file changed, 1 insertion(+) diff --git a/lit/kiwmi.lit b/lit/kiwmi.lit index d86b789..39dd32b 100644 --- a/lit/kiwmi.lit +++ b/lit/kiwmi.lit @@ -348,6 +348,7 @@ client_fd = accept(sock_fd, NULL, 0); if (!(client_fd < 0) && (msg_len = read(client_fd, msg, sizeof(msg))) > 0) { // Client sent something msg[msg_len] = '\0'; + // TODO: Actually handle printf("Client sent: %s\n", msg); close(client_fd); } else {