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

Added 'memberlist' command

This commit is contained in:
Tristan B. Kildaire 2020-09-30 10:15:32 +02:00
parent 1a3de749b5
commit bad168e400

View File

@ -240,8 +240,11 @@ public class DConnection : Thread
{ {
command = Command.MEMBER_COUNT; command = Command.MEMBER_COUNT;
} }
else if(commandByte == cast(ulong)9)
{
command = Command.MEMBER_LIST;
}
return command; return command;
} }