From ae64574d3e48d21528227400e23829f5a385d190 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Thu, 15 Oct 2020 11:27:25 +0200 Subject: [PATCH] Implemented checking for `SET_PROP` and `CHAN_PROP` commands --- source/dnetd/dconnection.d | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/dnetd/dconnection.d b/source/dnetd/dconnection.d index 11bc0c1..53a2556 100644 --- a/source/dnetd/dconnection.d +++ b/source/dnetd/dconnection.d @@ -274,6 +274,15 @@ public class DConnection : Thread { command = Command.STATUS; } + else if(commandByte == 14) + { + command = Command.CHAN_PROP; + } + else if(commandByte == 15) + { + command = Command.SET_PROP; + } + return command; }