net-esp-hosted: set wpa3_supported=true.

I've noticed wpa3 still works without this flag, so I'm not sure what this does tbh...
This commit is contained in:
Dario Nieuwenhuis 2024-09-18 21:24:50 +02:00
parent a406a01459
commit 60f93b42e2

View File

@ -120,7 +120,7 @@ impl<'a> Control<'a> {
pwd: unwrap!(String::try_from(password)),
bssid: String::new(),
listen_interval: 3,
is_wpa3_supported: false,
is_wpa3_supported: true,
};
ioctl!(self, ReqConnectAp, RespConnectAp, req, resp);
self.state_ch.set_link_state(LinkState::Up);