Skip to main content

11_captive_network/
11_captive_network.rs

1use systemconfiguration::CaptiveNetwork;
2
3fn main() {
4    let interfaces = CaptiveNetwork::supported_interfaces();
5    println!("supported_interfaces={interfaces:?}");
6}