We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfcd917 commit 693535dCopy full SHA for 693535d
crates/lib-dhcp/src/utils.rs
@@ -51,6 +51,8 @@ pub fn select_network_interface(
51
) -> Result<Option<NetworkInterface>, InterfaceError> {
52
let interfaces = NetworkInterface::show()?;
53
54
+ println!("Found {} interfaces", interfaces.len());
55
+
56
for interface in interfaces {
57
println!("{interface:?}");
58
// Return immediately when we found the interface with the
0 commit comments