diff options
Diffstat (limited to 'discord')
-rw-r--r-- | discord/objects.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/discord/objects.hpp b/discord/objects.hpp index 0f5c437..d236736 100644 --- a/discord/objects.hpp +++ b/discord/objects.hpp @@ -71,6 +71,23 @@ enum class GatewayEvent : int { }; enum class GatewayCloseCode : uint16_t { + // standard + Normal = 1000, + GoingAway = 1001, + ProtocolError = 1002, + Unsupported = 1003, + NoStatus = 1005, + Abnormal = 1006, + UnsupportedPayload = 1007, + PolicyViolation = 1008, + TooLarge = 1009, + MandatoryExtension = 1010, + ServerError = 1011, + ServiceRestart = 1012, + TryAgainLater = 1013, + BadGateway = 1014, + TLSHandshakeFailed = 1015, + // discord UnknownError = 4000, UnknownOpcode = 4001, |