You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was hoping to check the stability of this package, the application returns "Invalid password" irrespective of what I do, and this includes running the examples.
My environment
Rust version: rustc 1.77.1
OS type: macOS ( Ventura Version 13.6.4)
The Implementation
use wifi_rs::{prelude::*,WiFi};fnmain() -> Result<(),WifiConnectionError>{let config = Some(Config{interface:Some("wlo1"),});letmut wifi = WiFi::new(config);match wifi.connect("snowflakes","@opeolluwa"){Ok(result) => println!("{}",if result == true{"Connection Successful."} else {"Invalid password."}),Err(err) => println!("The following error occurred: {:?}", err),}Ok(())}
The text was updated successfully, but these errors were encountered:
Hello there!
I was hoping to check the stability of this package, the application returns "Invalid password" irrespective of what I do, and this includes running the examples.
My environment
Rust version:
rustc 1.77.1
OS type: macOS ( Ventura Version 13.6.4)
The Implementation
The text was updated successfully, but these errors were encountered: