OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_WEBSOCKETS_WEBSOCKET_ERRORS_H_ | 5 #ifndef NET_WEBSOCKETS_WEBSOCKET_ERRORS_H_ |
6 #define NET_WEBSOCKETS_WEBSOCKET_ERRORS_H_ | 6 #define NET_WEBSOCKETS_WEBSOCKET_ERRORS_H_ |
7 | 7 |
8 #include "net/base/net_errors.h" | 8 #include "net/base/net_errors.h" |
9 | 9 |
10 namespace net { | 10 namespace net { |
11 | 11 |
12 // Error values for WebSocket framing. | 12 // Reason codes used with close messages. NoStatusReceived, |
13 // This values are compatible to RFC6455 defined status codes. | 13 // AbnormalClosure and TlsHandshake are special in that they |
14 // should never be sent on the wire; they are only used within the | |
15 // implementation. | |
14 enum WebSocketError { | 16 enum WebSocketError { |
15 WEB_SOCKET_OK = 1000, | 17 // Status codes in the range 0 to 999 are not used. |
16 WEB_SOCKET_ERR_PROTOCOL_ERROR = 1002, | 18 |
17 WEB_SOCKET_ERR_MESSAGE_TOO_BIG = 1009 | 19 // The following are defined by RFC6455. |
20 kWebSocketNormalClosure = 1000, | |
21 kWebSocketErrorGoingAway = 1001, | |
22 kWebSocketErrorProtocolError = 1002, | |
23 kWebSocketErrorUnsupportedData = 1003, | |
24 kWebSocketErrorNoStatusReceived = 1005, | |
25 kWebSocketErrorAbnormalClosure = 1006, | |
26 kWebSocketErrorInvalidFramePayloadData = 1007, | |
27 kWebSocketErrorPolicyViolation = 1008, | |
28 kWebSocketErrorMessageTooBig = 1009, | |
29 kWebSocketErrorMandatoryExtension = 1010, | |
30 kWebSocketErrorInternalServerError = 1011, | |
31 kWebSocketErrorTlsHandshake = 1015, | |
32 | |
33 // The range 1000-2999 is reserved by RFC6455 for use by the WebSocket | |
34 // protocol and public extensions. | |
35 kWebSocketErrorProtocolReservedMax = 2999, | |
36 | |
37 // Codes starting with 3000 apply to the logical connection in the | |
38 // draft-ietf-hybi-websocket-multiplexing spec | |
39 kWebSocketErrorLogicalChannelFailed = 3000, | |
40 kWebSocketErrorSendQuotaViolation = 3005, | |
41 kWebSocketErrorSendQuotaOverflow = 3006, | |
42 kWebSocketErrorIdleTimeout = 3007, | |
43 kWebSocketErrorDropChannelAck = 3008, | |
44 kWebSocketErrorBadFragmentation = 3009, | |
tyoshino (SeeGerritForStatus)
2013/05/07 05:36:26
separate this block too. they're mux drop reason c
Adam Rice
2013/05/07 08:02:54
Sorry. I thought I had removed them, but I did not
| |
45 | |
46 // The range 3000-3999 is reserved by RFC6455 for registered use by libraries, | |
47 // frameworks and applications. | |
48 kWebSocketErrorRegisteredReservedMin = 3000, | |
49 kWebSocketErrorRegisteredReservedMax = 3999, | |
50 | |
51 // The range 4000-4999 is reserved by RFC6455 for private use by prior | |
52 // agreement of the endpoints. | |
53 kWebSocketErrorPrivateReservedMin = 4000, | |
54 kWebSocketErrorPrivateReservedMax = 4999, | |
18 }; | 55 }; |
19 | 56 |
20 // Convert WebSocketError to net::Error defined in net/base/net_errors.h. | 57 // Convert WebSocketError to net::Error defined in net/base/net_errors.h. |
21 NET_EXPORT_PRIVATE Error WebSocketErrorToNetError(WebSocketError error); | 58 NET_EXPORT_PRIVATE Error WebSocketErrorToNetError(WebSocketError error); |
22 | 59 |
23 } // namespace net | 60 } // namespace net |
24 | 61 |
25 #endif // NET_WEBSOCKETS_WEBSOCKET_FRAME_H_ | 62 #endif // NET_WEBSOCKETS_WEBSOCKET_ERRORS_H_ |
OLD | NEW |