LeviLamina
Loading...
Searching...
No Matches
HCWebSocketCloseStatus.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5enum class HCWebSocketCloseStatus : uint {
6 Normal = 1000,
7 GoingAway = 1001,
8 ProtocolError = 1002,
9 Unsupported = 1003,
10 EmptyStatus = 1005,
11 AbnormalClose = 1006,
12 InconsistentDatatype = 1007,
13 PolicyViolation = 1008,
14 TooLarge = 1009,
15 NegotiateError = 1010,
16 ServerTerminate = 1011,
17 HandshakeError = 1015,
18 UnknownError = 4000,
19 ErrorWinhttpTimeout = 12002,
20};