1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #if !BESTHTTP_DISABLE_WEBSOCKET
- namespace BestHTTP.WebSocket
- {
-
-
-
- public enum WebSocketStausCodes : ushort
- {
-
-
-
- NormalClosure = 1000,
-
-
-
- GoingAway = 1001,
-
-
-
- ProtocolError = 1002,
-
-
-
-
- WrongDataType = 1003,
-
-
-
- Reserved = 1004,
-
-
-
-
- NoStatusCode = 1005,
-
-
-
-
- ClosedAbnormally = 1006,
-
-
-
- DataError = 1007,
-
-
-
-
- PolicyError = 1008,
-
-
-
- TooBigMessage = 1009,
-
-
-
-
-
- ExtensionExpected = 1010,
-
-
-
- WrongRequest = 1011,
-
-
-
- TLSHandshakeError = 1015
- }
- }
- #endif
|