7 lines
168 B
Rust
7 lines
168 B
Rust
fn main() {
|
|
let interfaces = pcap_sys::PcapDevIterator::new().unwrap();
|
|
for interface in interfaces {
|
|
println!("Found interface: {interface}");
|
|
}
|
|
}
|