LeviLamina
Loading...
Searching...
No Matches
CloseStatusCode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5enum class CloseStatusCode : ushort {
6 Normal = 1000,
7 EndpointGoingAway = 1001,
8 ProtocolError = 1002,
9 UnsupportedDataType = 1003,
10 Reserved1004 = 1004,
11 Reserved1005 = 1005,
12 Reserved1006 = 1006,
13 DataNotOfExpectedType = 1007,
14 PolicyViolation = 1008,
15 MessageTooBig = 1009,
16 ServerDoesNotSupportExtension = 1010,
17 UnexpectedError = 1011,
18 Reserved1015 = 1015,
19 InvalidHandshakeRequest = 4996,
20 HandshakeKeyNotFound = 4997,
21 HandshakeTimeout = 4998,
22 LostConnection = 4999,
23};