1
0
mirror of https://github.com/deavminet/dnetd synced 2024-09-21 17:53:39 +02:00

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

View File

@ -274,6 +274,15 @@ public class DConnection : Thread
{ {
command = Command.STATUS; command = Command.STATUS;
} }
else if(commandByte == 14)
{
command = Command.CHAN_PROP;
}
else if(commandByte == 15)
{
command = Command.SET_PROP;
}
return command; return command;
} }