1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/// A WebSocket Close code.
///
/// Indicate why an endpoint is closing the WebSocket connection.
#[repr(u16)]
#[non_exhaustive]
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
pub enum CloseCode {
/// Indicates a normal closure, meaning that the purpose for
/// which the connection was established has been fulfilled.
Normal = 1000,
/// Indicates that an endpoint is "going away", such as a server
/// going down or a browser having navigated away from a page.
Away = 1001,
/// Indicates that an endpoint is terminating the connection due
/// to a protocol error.
Protocol = 1002,
/// Indicates that an endpoint is terminating the connection
/// because it has received a type of data it cannot accept (e.g., an
/// endpoint that understands only text data MAY send this if it
/// receives a binary message).
Unsupported = 1003,
/// Indicates that no status code was included in a closing frame. This
/// close code makes it possible to use a single method, `on_close` to
/// handle even cases where no close code was provided.
Status = 1005,
/// Indicates an abnormal closure. If the abnormal closure was due to an
/// error, this close code will not be used. Instead, the `on_error` method
/// of the handler will be called with the error. However, if the connection
/// is simply dropped, without an error, this close code will be sent to the
/// handler.
Abnormal = 1006,
/// Indicates that an endpoint is terminating the connection
/// because it has received data within a message that was not
/// consistent with the type of the message (e.g., non-UTF-8 \[RFC3629\]
/// data within a text message).
Invalid = 1007,
/// Indicates that an endpoint is terminating the connection
/// because it has received a message that violates its policy. This
/// is a generic status code that can be returned when there is no
/// other more suitable status code (e.g., Unsupported or Size) or if there
/// is a need to hide specific details about the policy.
Policy = 1008,
/// Indicates that an endpoint is terminating the connection
/// because it has received a message that is too big for it to
/// process.
Size = 1009,
/// Indicates that an endpoint (client) is terminating the
/// connection because it has expected the server to negotiate one or
/// more extension, but the server didn't return them in the response
/// message of the WebSocket handshake. The list of extensions that
/// are needed should be given as the reason for closing.
/// Note that this status code is not used by the server, because it
/// can fail the WebSocket handshake instead.
Extension = 1010,
/// Indicates that a server is terminating the connection because
/// it encountered an unexpected condition that prevented it from
/// fulfilling the request.
Error = 1011,
/// Indicates that the server is restarting. A client may choose to reconnect,
/// and if it does, it should use a randomized delay of 5-30 seconds between attempts.
Restart = 1012,
/// Indicates that the server is overloaded and the client should either connect
/// to a different IP (when multiple targets exist), or reconnect to the same IP
/// when a user has performed an action.
Again = 1013,
#[doc(hidden)]
Tls = 1015,
#[doc(hidden)]
Reserved(u16),
#[doc(hidden)]
Iana(u16),
#[doc(hidden)]
Library(u16),
#[doc(hidden)]
Bad(u16),
}
impl CloseCode {
pub(crate) const fn is_allowed(self) -> bool {
!matches!(
self,
CloseCode::Bad(_)
| CloseCode::Reserved(_)
| CloseCode::Status
| CloseCode::Abnormal
| CloseCode::Tls
)
}
pub(crate) const fn from_u16(code: u16) -> Self {
match code {
1000 => Self::Normal,
1001 => Self::Away,
1002 => Self::Protocol,
1003 => Self::Unsupported,
1005 => Self::Status,
1006 => Self::Abnormal,
1007 => Self::Invalid,
1008 => Self::Policy,
1009 => Self::Size,
1010 => Self::Extension,
1011 => Self::Error,
1012 => Self::Restart,
1013 => Self::Again,
1015 => Self::Tls,
1..=999 => Self::Bad(code),
1016..=2999 => Self::Reserved(code),
3000..=3999 => Self::Iana(code),
4000..=4999 => Self::Library(code),
_ => Self::Bad(code),
}
}
pub(crate) const fn into_u16(self) -> u16 {
match self {
Self::Normal => 1000,
Self::Away => 1001,
Self::Protocol => 1002,
Self::Unsupported => 1003,
Self::Status => 1005,
Self::Abnormal => 1006,
Self::Invalid => 1007,
Self::Policy => 1008,
Self::Size => 1009,
Self::Extension => 1010,
Self::Error => 1011,
Self::Restart => 1012,
Self::Again => 1013,
Self::Tls => 1015,
Self::Reserved(code) => code,
Self::Iana(code) => code,
Self::Library(code) => code,
Self::Bad(code) => code,
}
}
}