fix ipv6 udp and wisp-mux 2.0.2

This commit is contained in:
Toshit Chawda 2024-03-21 18:21:56 -07:00
parent 7583a9c3fd
commit 595af12cb7
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D
5 changed files with 7 additions and 6 deletions

View file

@ -8,7 +8,7 @@ impl From<OpCode> for crate::ws::OpCode {
fn from(opcode: OpCode) -> Self {
use OpCode::*;
match opcode {
Continuation => unreachable!(),
Continuation => unreachable!("continuation should never be recieved when using a fragmentcollector"),
Text => Self::Text,
Binary => Self::Binary,
Close => Self::Close,