#[repr(u8)]pub enum ApBehaviourEnum {
Show 16 variants
WIFI_AUTH_OPEN = 0,
WIFI_AUTH_WEP = 1,
WIFI_AUTH_WPA_PSK = 2,
WIFI_AUTH_WPA2_PSK = 3,
WIFI_AUTH_WPA_WPA2_PSK = 4,
WIFI_AUTH_WPA2_ENTERPRISE = 5,
WIFI_AUTH_MAX = 6,
RSVD1 = 7,
RSVD2 = 8,
RSVD3 = 9,
RSVD4 = 10,
RSVD5 = 11,
RSVD6 = 12,
RSVD7 = 13,
RSVD8 = 14,
RSVD9 = 15,
}
Expand description
words do not begin to explain how hard this was to find. its buried in the esp core arduino framework.
Variants§
WIFI_AUTH_OPEN = 0
authenticate mode : open
WIFI_AUTH_WEP = 1
authenticate mode : WEP
WIFI_AUTH_WPA_PSK = 2
authenticate mode : WPA_PSK
WIFI_AUTH_WPA2_PSK = 3
authenticate mode : WPA2_PSK
WIFI_AUTH_WPA_WPA2_PSK = 4
authenticate mode : WPA_WPA2_PSK
WIFI_AUTH_WPA2_ENTERPRISE = 5
authenticate mode : WPA2_ENTERPRISE
WIFI_AUTH_MAX = 6
probaly you found a CIA AP. Run
RSVD1 = 7
Reserved to keep some semblance of backwards compatibility when new versions of whatever the fuck this came from come out
RSVD2 = 8
Reserved to keep some semblance of backwards compatibility when new versions of whatever the fuck this came from come out
RSVD3 = 9
Reserved to keep some semblance of backwards compatibility when new versions of whatever the fuck this came from come out
RSVD4 = 10
Reserved to keep some semblance of backwards compatibility when new versions of whatever the fuck this came from come out
RSVD5 = 11
Reserved to keep some semblance of backwards compatibility when new versions of whatever the fuck this came from come out
RSVD6 = 12
Reserved to keep some semblance of backwards compatibility when new versions of whatever the fuck this came from come out
RSVD7 = 13
Reserved to keep some semblance of backwards compatibility when new versions of whatever the fuck this came from come out
RSVD8 = 14
Reserved to keep some semblance of backwards compatibility when new versions of whatever the fuck this came from come out
RSVD9 = 15
Reserved to keep some semblance of backwards compatibility when new versions of whatever the fuck this came from come out
Trait Implementations§
Source§impl Clone for ApBehaviourEnum
impl Clone for ApBehaviourEnum
Source§fn clone(&self) -> ApBehaviourEnum
fn clone(&self) -> ApBehaviourEnum
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more