From e4c3f72f3afc376396daa1d8b1bd794be7aaa067 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Fri, 25 Sep 2020 19:41:30 +0200 Subject: [PATCH] Cleanup --- source/dnetd/dconnection.d | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/source/dnetd/dconnection.d b/source/dnetd/dconnection.d index 3d52b89..5431379 100644 --- a/source/dnetd/dconnection.d +++ b/source/dnetd/dconnection.d @@ -410,17 +410,13 @@ public class DConnection : Thread { status = false; } - - /* TODO: Handling here, should we make the user wait? */ /* Encode the reply */ - // byte[] reply = [status]; - // reply ~= channelList; - - /* TODO: Implement me, use return value */ - // writeSocket(tag, reply); + /* TODO: */ + byte[] reply = [status]; + writeSocket(tag, reply); } /* If no matching built-in command was found */ else