CommandType

- Added new enum members `CHANNEL_NEW_MESSAGE` and `CHANNEL_SEND_MESSAGE`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-11-13 09:54:38 +02:00
parent 4c113de94a
commit 13d761aeb0
1 changed files with 20 additions and 0 deletions

View File

@ -117,6 +117,26 @@ public enum CommandType
*/
CHANNELS_ENUMERATE_REP,
/**
* Channel message (receive)
*
* Sent from server to client
* representing a new message
* that has been sent to the
* client.
*/
CHANNEL_NEW_MESSAGE,
/**
* Channel message (send)
*
* A client sends this to
* the server when he wants
* to send a message to some
* body(ies)
*/
CHANNEL_SEND_MESSAGE,
/**
* Server linkg request
*