code cleanup

This commit is contained in:
Martin Brodbeck 2023-10-04 11:23:14 +02:00
parent 7d60561f63
commit 6fa55cdc61

View file

@ -95,6 +95,7 @@ fn mopp(speed: u8, data: &[u8]) -> Vec<u8> {
);
let mut res = Vec::<u8>::new();
for i in (0..m.len()).step_by(8) {
let value = u8::from_str_radix(&m[i..i + 8], 2).unwrap();
res.push(value);
@ -118,8 +119,7 @@ fn broadcast(
}
}
fn remove_old_clients(socket: &UdpSocket,
subscribers: &mut HashMap<String, DateTime<Local>>,) {
fn remove_old_clients(socket: &UdpSocket, subscribers: &mut HashMap<String, DateTime<Local>>) {
let timestamp = Local::now();
debug!("Number of clients: {}", subscribers.len());