more improvements and fix wisp impl

This commit is contained in:
Toshit Chawda 2024-02-07 08:38:37 -08:00
parent 1a897ec03a
commit 85a30aeec5
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D
12 changed files with 478 additions and 413 deletions

View file

@ -63,7 +63,7 @@ impl From<ConnectPacket> for Vec<u8> {
#[derive(Debug)]
pub struct ContinuePacket {
buffer_remaining: u32,
pub buffer_remaining: u32,
}
impl ContinuePacket {
@ -94,7 +94,7 @@ impl From<ContinuePacket> for Vec<u8> {
#[derive(Debug)]
pub struct ClosePacket {
reason: u8,
pub reason: u8,
}
impl ClosePacket {