fixed error

This commit is contained in:
DJMrTV 2025-01-19 20:11:19 +01:00
commit a8d873d71b

View file

@ -64,7 +64,9 @@ impl Endpoint{
((packet.header.types_and_flags.get_flags() & flags::ACK) != 0) ||
((packet.header.types_and_flags.get_flags() & flags::RELIABLE) != 0) ||
((packet.header.types_and_flags.get_flags() & flags::MULTI_ACK) != 0) {
unimplemented!("{:?}", packet.header.types_and_flags)
let copy = packet.header.types_and_flags;
unimplemented!("{:?}", copy)
}