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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
//! Types required for the WebSocket protocol implementation.
use std::{
cell::UnsafeCell, fmt, hint::unreachable_unchecked, mem::replace, num::NonZeroU16, ops::Deref,
};
use bytes::{BufMut, Bytes, BytesMut};
use super::error::ProtocolError;
use crate::utf8;
/// The opcode of a WebSocket frame. It denotes the type of the frame or an
/// assembled message.
///
/// A fully assembled [`Message`] will never have a continuation opcode.
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub(super) enum OpCode {
/// A continuation opcode. This will never be encountered in a full
/// [`Message`].
Continuation,
/// A text opcode.
Text,
/// A binary opcode.
Binary,
/// A close opcode.
Close,
/// A ping opcode.
Ping,
/// A pong opcode.
Pong,
}
impl OpCode {
/// Whether this is a control opcode (i.e. close, ping or pong).
pub(super) fn is_control(self) -> bool {
matches!(self, Self::Close | Self::Ping | Self::Pong)
}
}
impl TryFrom<u8> for OpCode {
type Error = ProtocolError;
fn try_from(value: u8) -> Result<Self, Self::Error> {
match value {
0 => Ok(Self::Continuation),
1 => Ok(Self::Text),
2 => Ok(Self::Binary),
8 => Ok(Self::Close),
9 => Ok(Self::Ping),
10 => Ok(Self::Pong),
_ => Err(ProtocolError::InvalidOpcode),
}
}
}
impl From<OpCode> for u8 {
fn from(value: OpCode) -> Self {
match value {
OpCode::Continuation => 0,
OpCode::Text => 1,
OpCode::Binary => 2,
OpCode::Close => 8,
OpCode::Ping => 9,
OpCode::Pong => 10,
}
}
}
/// Close status code.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub struct CloseCode(NonZeroU16);
// rustfmt reorders these alphabetically
#[rustfmt::skip]
impl CloseCode {
/// Normal closure, meaning that the purpose for which the connection was
/// established has been fulfilled.
pub const NORMAL_CLOSURE: Self = Self(unsafe { NonZeroU16::new_unchecked(1000) });
/// Endpoint is "going away", such as a server going down or a browser
/// having navigated away from a page.
pub const GOING_AWAY: Self = Self(unsafe { NonZeroU16::new_unchecked(1001) });
/// Endpoint is terminating the connection due to a protocol error.
pub const PROTOCOL_ERROR: Self = Self(unsafe { NonZeroU16::new_unchecked(1002) });
/// Endpoint is terminating the connection because it has received a type of
/// data it cannot accept.
pub const UNSUPPORTED_DATA: Self = Self(unsafe { NonZeroU16::new_unchecked(1003) });
/// No status code was actually present.
pub const NO_STATUS_RECEIVED: Self = Self(unsafe { NonZeroU16::new_unchecked(1005) });
/// Endpoint is terminating the connection because it has received data
/// within a message that was not consistent with the type of the message.
pub const INVALID_FRAME_PAYLOAD_DATA: Self = Self(unsafe { NonZeroU16::new_unchecked(1007) });
/// Endpoint is terminating the connection because it has received a message
/// that violates its policy.
pub const POLICY_VIOLATION: Self = Self(unsafe { NonZeroU16::new_unchecked(1008) });
/// Endpoint is terminating the connection because it has received a message
/// that is too big for it to process.
pub const MESSAGE_TOO_BIG: Self = Self(unsafe { NonZeroU16::new_unchecked(1009) });
/// 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.
pub const MANDATORY_EXTENSION: Self = Self(unsafe { NonZeroU16::new_unchecked(1010) });
/// Server is terminating the connection because it encountered an
/// unexpected condition that prevented it from fulfilling the request.
pub const INTERNAL_SERVER_ERROR: Self = Self(unsafe { NonZeroU16::new_unchecked(1011) });
/// Service is restarted. A client may reconnect, and if it choses to do,
/// should reconnect using a randomized delay of 5--30s.
pub const SERVICE_RESTART: Self = Self(unsafe { NonZeroU16::new_unchecked(1012) });
/// Service is experiencing overload. A client should only connect to a
/// different IP (when there are multiple for the target) or reconnect to
/// the same IP upon user action.
pub const SERVICE_OVERLOAD: Self = Self(unsafe { NonZeroU16::new_unchecked(1013) });
/// The server was acting as a gateway or proxy and received an invalid
/// response from the upstream server. This is similar to the HTTP 502
/// status code.
pub const BAD_GATEWAY: Self = Self(unsafe { NonZeroU16::new_unchecked(1014) });
}
impl CloseCode {
/// Whether the close code is allowed to be sent over the wire.
pub(super) fn is_sendable(self) -> bool {
match self.0.get() {
1004 | 1005 | 1006 | 1015 => false,
1000..=4999 => true,
// SAFETY: `TryFrom` is the only way to acquire self and it errors for these values
0..=999 | 5000..=u16::MAX => unsafe { unreachable_unchecked() },
}
}
}
impl From<CloseCode> for u16 {
fn from(value: CloseCode) -> Self {
value.0.get()
}
}
impl TryFrom<u16> for CloseCode {
type Error = ProtocolError;
fn try_from(value: u16) -> Result<Self, Self::Error> {
match value {
// SAFETY: We just checked that the value is non-zero
1000..=1015 | 3000..=4999 => Ok(Self(unsafe { NonZeroU16::new_unchecked(value) })),
0..=999 | 1016..=2999 | 5000..=u16::MAX => Err(ProtocolError::InvalidCloseCode),
}
}
}
/// The websocket message payload storage. Internally implemented as a smart
/// wrapper around [`Bytes`] and [`BytesMut`].
///
/// Payloads can be created by using the `From<T>` implementations. All of them
/// use [`BytesMut`] under the hood, except when created using [`From<Bytes>`]
/// with a reference counter greater than one or when using a static reference.
///
/// Sending the payloads is zero-copy, except when sending a payload backed by
/// [`Bytes`] as a client to a server. The use of [`BytesMut`] as the backing
/// storage where cheaply possible is recommended to ensure zero-copy sending.
///
/// All conversions to other types are zero-cost, except [`Into<BytesMut>`] if
/// the backing type is [`Bytes`] with a reference counter greater than one.
///
/// [`From<Bytes>`]: #impl-From<Bytes>-for-Payload
/// [`Into<BytesMut>`]: #impl-From<Payload>-for-BytesMut
pub struct Payload {
/// The raw payload data.
data: UnsafeCell<PayloadStorage>,
/// Whether the payload data was validated to be valid UTF-8.
utf8_validated: bool,
}
impl Payload {
/// Creates a new shared `Payload` from a static slice.
const fn from_static(bytes: &'static [u8]) -> Self {
Self {
data: UnsafeCell::new(PayloadStorage::Shared(Bytes::from_static(bytes))),
utf8_validated: false,
}
}
/// Marks whether the payload contents were validated to be valid UTF-8.
pub(super) fn set_utf8_validated(&mut self, value: bool) {
self.utf8_validated = value;
}
/// Shortens the buffer, keeping the first `len` bytes and dropping the
/// rest.
pub(super) fn truncate(&mut self, len: usize) {
match self.data.get_mut() {
PayloadStorage::Unique(b) => b.truncate(len),
PayloadStorage::Shared(b) => b.truncate(len),
}
}
/// Splits the buffer into two at the given index.
fn split_to(&mut self, at: usize) -> Self {
// This is only used by the outgoing message frame iterator, so we do not care
// about the value of utf8_validated. For the sake of correctness (in case we
// split a utf8 codepoint), we set it to false.
self.utf8_validated = false;
Self {
data: UnsafeCell::new(match self.data.get_mut() {
PayloadStorage::Unique(b) => PayloadStorage::Unique(b.split_to(at)),
PayloadStorage::Shared(b) => PayloadStorage::Shared(b.split_to(at)),
}),
utf8_validated: false,
}
}
/// Converts the payload's internal representation to [`Bytes`].
fn as_bytes(&self) -> &Bytes {
if let PayloadStorage::Shared(bytes) = self.as_ref() {
bytes
} else {
// SAFETY: No concurrent access is possible as Payload is !Sync and
// `0` is not read again before it's overwritten.
unsafe {
let payload = self.data.get().read();
let bytes = match payload {
PayloadStorage::Unique(p) => p.freeze(),
PayloadStorage::Shared(_) => unreachable_unchecked(),
};
self.data.get().write(PayloadStorage::Shared(bytes));
}
match self.as_ref() {
// SAFETY: We just wrote `Shared` into `value`
PayloadStorage::Unique(_) => unsafe { unreachable_unchecked() },
PayloadStorage::Shared(p) => p,
}
}
}
}
impl AsRef<PayloadStorage> for Payload {
fn as_ref(&self) -> &PayloadStorage {
// SAFETY: No outstanding mutable references exists.
unsafe { &*self.data.get() }
}
}
impl Clone for Payload {
fn clone(&self) -> Self {
let bytes = self.as_bytes();
Self {
data: UnsafeCell::new(PayloadStorage::Shared(bytes.clone())),
utf8_validated: self.utf8_validated,
}
}
}
impl Deref for Payload {
type Target = [u8];
fn deref(&self) -> &Self::Target {
match self.as_ref() {
PayloadStorage::Unique(b) => b,
PayloadStorage::Shared(b) => b,
}
}
}
impl fmt::Debug for Payload {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("Payload").field(self.as_ref()).finish()
}
}
impl From<Bytes> for Payload {
fn from(value: Bytes) -> Self {
match value.try_into_mut() {
Ok(value) => Self {
data: UnsafeCell::new(PayloadStorage::Unique(value)),
utf8_validated: false,
},
Err(value) => Self {
data: UnsafeCell::new(PayloadStorage::Shared(value)),
utf8_validated: false,
},
}
}
}
impl From<BytesMut> for Payload {
fn from(value: BytesMut) -> Self {
Self {
data: UnsafeCell::new(PayloadStorage::Unique(value)),
utf8_validated: false,
}
}
}
impl From<Payload> for Bytes {
fn from(value: Payload) -> Self {
match value.data.into_inner() {
PayloadStorage::Unique(p) => p.freeze(),
PayloadStorage::Shared(p) => p,
}
}
}
impl From<Payload> for BytesMut {
fn from(value: Payload) -> Self {
match value.data.into_inner() {
PayloadStorage::Unique(p) => p,
PayloadStorage::Shared(p) => p.into(),
}
}
}
impl From<Vec<u8>> for Payload {
fn from(value: Vec<u8>) -> Self {
// BytesMut::from_iter goes through a specialization in std if the iterator is a
// Vec, effectively allowing us to use BytesMut::from_vec which isn't
// exposed in bytes. See https://github.com/tokio-rs/bytes/issues/723 for details.
Self {
data: UnsafeCell::new(PayloadStorage::Unique(BytesMut::from_iter(value))),
utf8_validated: false,
}
}
}
impl From<String> for Payload {
fn from(value: String) -> Self {
// See From<Vec<u8>> impl for reasoning behind this.
Self {
data: UnsafeCell::new(PayloadStorage::Unique(BytesMut::from_iter(
value.into_bytes(),
))),
utf8_validated: true,
}
}
}
impl From<&'static [u8]> for Payload {
fn from(value: &'static [u8]) -> Self {
Self {
data: UnsafeCell::new(PayloadStorage::Shared(Bytes::from_static(value))),
utf8_validated: false,
}
}
}
impl From<&'static str> for Payload {
fn from(value: &'static str) -> Self {
Self {
data: UnsafeCell::new(PayloadStorage::Shared(Bytes::from_static(value.as_bytes()))),
utf8_validated: true,
}
}
}
/// [`Payload`] backend.
#[derive(Debug)]
enum PayloadStorage {
/// Unique data.
Unique(BytesMut),
/// Shared data.
Shared(Bytes),
}
/// A WebSocket message. This is cheaply clonable and uses [`Payload`] as the
/// payload storage underneath.
///
/// Received messages are always validated prior to dealing with them, so all
/// the type casting methods are either almost or fully zero cost.
#[derive(Debug, Clone)]
pub struct Message {
/// The [`OpCode`] of the message.
pub(super) opcode: OpCode,
/// The payload of the message.
pub(super) payload: Payload,
}
impl Message {
/// Create a new text message. The payload contents must be valid UTF-8.
#[must_use]
pub fn text<P: Into<Payload>>(payload: P) -> Self {
Self {
opcode: OpCode::Text,
payload: payload.into(),
}
}
/// Create a new binary message.
#[must_use]
pub fn binary<P: Into<Payload>>(payload: P) -> Self {
Self {
opcode: OpCode::Binary,
payload: payload.into(),
}
}
/// Create a new close message. If an non-empty reason is specified, a
/// [`CloseCode`] must be specified for it to be included.
#[must_use]
pub fn close(code: Option<CloseCode>, reason: &str) -> Self {
let mut payload = BytesMut::with_capacity((2 + reason.len()) * usize::from(code.is_some()));
if let Some(code) = code {
payload.put_u16(code.into());
payload.extend_from_slice(reason.as_bytes());
}
Self {
opcode: OpCode::Close,
payload: payload.into(),
}
}
/// Create a new ping message.
#[must_use]
pub fn ping<P: Into<Payload>>(payload: P) -> Self {
Self {
opcode: OpCode::Ping,
payload: payload.into(),
}
}
/// Create a new pong message.
#[must_use]
pub fn pong<P: Into<Payload>>(payload: P) -> Self {
Self {
opcode: OpCode::Pong,
payload: payload.into(),
}
}
/// Whether the message is a text message.
#[must_use]
pub fn is_text(&self) -> bool {
self.opcode == OpCode::Text
}
/// Whether the message is a binary message.
#[must_use]
pub fn is_binary(&self) -> bool {
self.opcode == OpCode::Binary
}
/// Whether the message is a close message.
#[must_use]
pub fn is_close(&self) -> bool {
self.opcode == OpCode::Close
}
/// Whether the message is a ping message.
#[must_use]
pub fn is_ping(&self) -> bool {
self.opcode == OpCode::Ping
}
/// Whether the message is a pong message.
#[must_use]
pub fn is_pong(&self) -> bool {
self.opcode == OpCode::Pong
}
/// Returns the message payload and consumes the message, regardless of
/// type.
#[must_use]
pub fn into_payload(self) -> Payload {
self.payload
}
/// Returns a reference to the message payload, regardless of message type.
pub fn as_payload(&self) -> &Payload {
&self.payload
}
/// Returns a reference to the message payload as a string if it is a text
/// message.
///
/// # Panics
///
/// This method will panic when the message was created via
/// [`Message::text`] with invalid UTF-8.
pub fn as_text(&self) -> Option<&str> {
// SAFETY: Received messages were validated to be valid UTF-8, otherwise
// we check if it is valid UTF-8.
(self.opcode == OpCode::Text).then(|| {
assert!(
self.payload.utf8_validated || utf8::parse_str(&self.payload).is_ok(),
"called as_text on message created from payload with invalid utf-8"
);
unsafe { std::str::from_utf8_unchecked(&self.payload) }
})
}
/// Returns the [`CloseCode`] and close reason if the message is a close
/// message.
pub fn as_close(&self) -> Option<(CloseCode, &str)> {
(self.opcode == OpCode::Close).then(|| {
let code = if self.payload.is_empty() {
CloseCode::NO_STATUS_RECEIVED
} else {
// SAFETY: Opcode is Close with a non-empty payload so it's at least 2 bytes
// long
unsafe {
CloseCode::try_from(u16::from_be_bytes(
self.payload
.get_unchecked(0..2)
.try_into()
.unwrap_unchecked(),
))
.unwrap_unchecked()
}
};
// SAFETY: Opcode is Close so the rest of the payload is valid UTF-8
let reason =
unsafe { std::str::from_utf8_unchecked(self.payload.get(2..).unwrap_or_default()) };
(code, reason)
})
}
/// Returns an iterator over frames of `frame_size` length to split this
/// message into.
pub(super) fn into_frames(self, frame_size: usize) -> MessageFrames {
MessageFrames {
frame_size,
payload: self.payload,
opcode: self.opcode,
}
}
}
/// Iterator over frames of a chunked message.
pub(super) struct MessageFrames {
/// Iterator over payload chunks.
frame_size: usize,
/// The full message payload this iterates over.
payload: Payload,
/// Opcode for the next frame.
opcode: OpCode,
}
impl Iterator for MessageFrames {
type Item = Frame;
fn next(&mut self) -> Option<Self::Item> {
let is_empty = self.payload.is_empty() && self.opcode == OpCode::Continuation;
(!is_empty).then(|| {
let payload = self
.payload
.split_to(self.frame_size.min(self.payload.len()));
Frame {
opcode: replace(&mut self.opcode, OpCode::Continuation),
is_final: self.payload.is_empty(),
payload,
}
})
}
}
/// Configuration for limitations on reading of [`Message`]s from a
/// [`WebSocketStream`] to prevent high memory usage caused by malicious actors.
///
/// [`WebSocketStream`]: super::WebSocketStream
#[derive(Debug, Clone, Copy)]
pub struct Limits {
/// The maximum allowed payload length. The default
/// is 64 MiB.
pub(super) max_payload_len: usize,
}
impl Limits {
/// A limit configuration without any limits.
#[must_use]
pub fn unlimited() -> Self {
Self {
max_payload_len: usize::MAX,
}
}
/// Sets the maximum allowed payload length. `None` equals no limit. The
/// default is 64 MiB.
#[must_use]
pub fn max_payload_len(mut self, size: Option<usize>) -> Self {
self.max_payload_len = size.unwrap_or(usize::MAX);
self
}
}
impl Default for Limits {
fn default() -> Self {
Self {
max_payload_len: 64 * 1024 * 1024,
}
}
}
/// Low-level configuration for a [`WebSocketStream`] that allows configuring
/// behavior for sending and receiving messages.
///
/// [`WebSocketStream`]: super::WebSocketStream
#[derive(Debug, Clone, Copy)]
pub struct Config {
/// Frame payload size to split outgoing messages into.
///
/// Consider decreasing this if the remote imposes a limit on the frame
/// payload size. The default is 4MiB.
pub(super) frame_size: usize,
/// Threshold of queued up bytes after which the underlying I/O is flushed
/// before the sink is declared ready. The default is 8 KiB.
pub(super) flush_threshold: usize,
}
impl Config {
/// Set the frame payload size to split outgoing messages into.
///
/// Consider decreasing this if the remote imposes a limit on the frame
/// payload size. The default is 4MiB.
///
/// # Panics
///
/// If `frame_size` is `0`.
#[must_use]
pub fn frame_size(mut self, frame_size: usize) -> Self {
assert_ne!(frame_size, 0, "frame_size must be non-zero");
self.frame_size = frame_size;
self
}
/// Sets the threshold of queued up bytes after which the underlying I/O is
/// flushed before the sink is declared ready. The default is 8 KiB.
#[must_use]
pub fn flush_threshold(mut self, threshold: usize) -> Self {
self.flush_threshold = threshold;
self
}
}
impl Default for Config {
fn default() -> Self {
Self {
frame_size: 4 * 1024 * 1024,
flush_threshold: 8 * 1024,
}
}
}
/// Role assumed by the [`WebSocketStream`] in a connection.
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub(crate) enum Role {
/// The client end.
Client,
/// The server end.
Server,
}
/// The connection state of the stream.
#[derive(Debug, PartialEq)]
pub(super) enum StreamState {
/// The connection is fully active and no close has been initiated.
Active,
/// The connection has been closed by the peer, but not yet acknowledged by
/// us.
ClosedByPeer,
/// The connection has been closed by us, but not yet acknowledged.
ClosedByUs,
/// The close has been acknowledged by the end that did not initiate the
/// close.
CloseAcknowledged,
}
/// A frame of a WebSocket [`Message`].
#[derive(Clone, Debug)]
pub(super) struct Frame {
/// The [`OpCode`] of the frame.
pub opcode: OpCode,
/// Whether this is the last frame of a message.
pub is_final: bool,
/// The payload bytes of the frame.
pub payload: Payload,
}
impl Frame {
/// Default close frame.
#[allow(clippy::declare_interior_mutable_const)]
pub const DEFAULT_CLOSE: Self = Self {
opcode: OpCode::Close,
is_final: true,
payload: Payload::from_static(&CloseCode::NORMAL_CLOSURE.0.get().to_be_bytes()),
};
/// Encode the frame head into `out`, returning how many bytes were written.
pub fn encode(&self, out: &mut [u8; 10]) -> u8 {
out[0] = u8::from(self.is_final) << 7 | u8::from(self.opcode);
if u16::try_from(self.payload.len()).is_err() {
out[1] = 127;
let len = u64::try_from(self.payload.len()).unwrap();
out[2..10].copy_from_slice(&len.to_be_bytes());
10
} else if self.payload.len() > 125 {
out[1] = 126;
let len = u16::try_from(self.payload.len()).expect("checked by previous branch");
out[2..4].copy_from_slice(&len.to_be_bytes());
4
} else {
out[1] = u8::try_from(self.payload.len()).expect("checked by previous branch");
2
}
}
}
impl From<Message> for Frame {
fn from(value: Message) -> Self {
Self {
opcode: value.opcode,
is_final: true,
payload: value.payload,
}
}
}
impl From<&ProtocolError> for Frame {
fn from(val: &ProtocolError) -> Self {
match val {
ProtocolError::InvalidUtf8 => {
Message::close(Some(CloseCode::INVALID_FRAME_PAYLOAD_DATA), "invalid utf8")
}
_ => Message::close(Some(CloseCode::PROTOCOL_ERROR), val.as_str()),
}
.into()
}
}