aboutsummaryrefslogtreecommitdiff
path: root/src/structs.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-07-12 04:17:07 +0200
committerDario Nieuwenhuis <[email protected]>2022-07-12 04:17:07 +0200
commite1fd7dfc40bbb1ccbab511fb1e0d7a1120ae68a0 (patch)
treee8f9eee7925979aa326cde5be15a0c44ad3c3f31 /src/structs.rs
parent18b11e7417e1338fb18e6ceda609f2a0841d7a57 (diff)
wpa2 join... still nothing.
Diffstat (limited to 'src/structs.rs')
-rw-r--r--src/structs.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/structs.rs b/src/structs.rs
index 91df616ad..dd2c0cfe9 100644
--- a/src/structs.rs
+++ b/src/structs.rs
@@ -142,6 +142,16 @@ impl_bytes!(SsidInfo);
142#[derive(Clone, Copy)] 142#[derive(Clone, Copy)]
143#[cfg_attr(feature = "defmt", derive(defmt::Format))] 143#[cfg_attr(feature = "defmt", derive(defmt::Format))]
144#[repr(C)] 144#[repr(C)]
145pub struct PassphraseInfo {
146 pub len: u16,
147 pub flags: u16,
148 pub passphrase: [u8; 64],
149}
150impl_bytes!(PassphraseInfo);
151
152#[derive(Clone, Copy)]
153#[cfg_attr(feature = "defmt", derive(defmt::Format))]
154#[repr(C)]
145pub struct EventMask { 155pub struct EventMask {
146 pub iface: u32, 156 pub iface: u32,
147 pub events: [u8; 24], 157 pub events: [u8; 24],