diff --git a/src/main.rs b/src/main.rs index f878ac6..f86891c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,11 +7,9 @@ const CLIENT_TIMEOUT: u32 = 300; const MY_SPEED: u8 = 30; fn strip_header(msg: &[u8]) -> Vec { - //print_msg(msg); let mut stripped = Vec::new(); stripped.push(msg[1] & 3); stripped.append(msg[2..].to_vec().as_mut()); - //print_msg(&stripped); stripped.to_owned() }