Implemented checking for `SET_PROP` and `CHAN_PROP` commands

This commit is contained in:
Tristan B. Kildaire 2020-10-15 11:27:25 +02:00
parent 7031d6f538
commit ae64574d3e
1 changed files with 9 additions and 0 deletions

View File

@ -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;
}