fix(wol): clippy + cfg-gate the Windows client module — main compiles again

The Wake-on-LAN batch landed with lints that fail `clippy -D warnings`
(doc continuation, char-array split, io::Error::other, redundant closure)
and an ungated `mod wol;` in the Windows client, which pulls windows-only
crates into the non-Windows stub build.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-04 12:02:45 +00:00
parent 780e1cf4cf
commit 7c230b97f8
3 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ pub extern "system" fn Java_io_unom_punktfunk_kit_NativeBridge_nativeWakeOnLan<'
};
let last_ip: String = env
.get_string(&last_ip)
.map(|s| Into::<String>::into(s))
.map(Into::<String>::into)
.unwrap_or_default();
let macs: Vec<[u8; 6]> = macs_csv
.split(',')
+1
View File
@@ -43,6 +43,7 @@ mod trust;
#[cfg(windows)]
mod video;
#[cfg(windows)]
mod wol;
#[cfg(windows)]
+3 -5
View File
@@ -13,6 +13,7 @@
//! * the **limited broadcast** `255.255.255.255`, and
//! * optionally a **unicast** to the host's last-known IP (covers the brief window where the
//! host is reachable but hasn't re-advertised, and NICs that wake on a directed unicast),
//!
//! on the two conventional WoL ports (9 and 7), repeated a few times to survive UDP loss.
use std::io;
@@ -36,7 +37,7 @@ const BURST: usize = 3;
pub fn parse_mac(s: &str) -> Option<Mac> {
let mut m = [0u8; 6];
let mut n = 0;
for part in s.split(|c| c == ':' || c == '-') {
for part in s.split([':', '-']) {
if n == 6 {
return None; // too many octets
}
@@ -103,10 +104,7 @@ pub fn send_magic_packet(macs: &[Mac], last_known_ip: Option<Ipv4Addr>) -> io::R
if sent_any {
Ok(())
} else {
Err(io::Error::new(
io::ErrorKind::Other,
"no magic packet could be sent",
))
Err(io::Error::other("no magic packet could be sent"))
}
}