started implementing data packets

This commit is contained in:
DJMrTV 2025-01-23 15:24:55 +01:00
commit ecad507f63
2 changed files with 12 additions and 2 deletions

View file

@ -75,6 +75,7 @@ pub mod flags {
pub mod types {
pub const SYN: u8 = 0x0;
pub const CONNECT: u8 = 0x1;
pub const DATA: u8 = 0x2;
}
impl Debug for TypesFlags {