Added stub for server-to-server messages

This commit is contained in:
Tristan B. Velloza Kildaire 2021-08-27 15:32:32 +02:00
parent 75394c6da6
commit e143e0df79
1 changed files with 12 additions and 0 deletions

View File

@ -15,6 +15,7 @@ message ServerMessage
LIST_USERS = 1; LIST_USERS = 1;
GET_SERVER_PROPS = 2; GET_SERVER_PROPS = 2;
GET_SERVER_PROP = 3; GET_SERVER_PROP = 3;
S2S_MESSAGE = 4;
} }
// The type of the server command // The type of the server command
@ -22,4 +23,15 @@ message ServerMessage
// Additional data (dependent on command) // Additional data (dependent on command)
bytes additionalData = 2; bytes additionalData = 2;
}
// STS
//
// These represent server-to-server messages
// for linking, delinking, transferring data
// for users, channels, messages and other
// network-wide information
message STSMessage
{
} }