mirror of
https://github.com/spacebarchat/server.git
synced 2026-09-01 20:09:01 +00:00
More C# progress
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
namespace Spacebar.Models.Gateway;
|
||||
|
||||
public enum CloseCode {
|
||||
UnknownError = 4000,
|
||||
UnknownOpcode = 4001,
|
||||
DecodeError = 4002,
|
||||
NotAuthenticated = 4003,
|
||||
AuthenticationFailed = 4004,
|
||||
AlreadyAuthenticated = 4005,
|
||||
InvalidSession = 4006,
|
||||
InvalidSeq = 4007,
|
||||
RateLimited = 4008,
|
||||
SessionTimedOut = 4009,
|
||||
InvalidShard = 4010,
|
||||
ShardingRequired = 4011,
|
||||
InvalidApiVersion = 4012,
|
||||
InvalidIntent = 4013,
|
||||
DisallowedIntent = 4014,
|
||||
}
|
||||
Reference in New Issue
Block a user