code cleanup
This commit is contained in:
parent
7d60561f63
commit
6fa55cdc61
1 changed files with 14 additions and 14 deletions
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue