wlan_storage_constants/
constants.rs1use serde::{Deserialize, Serialize};
6
7pub const NODE_SEPARATOR: &'static str = "#/@";
8pub const POLICY_STASH_PREFIX: &str = "config";
9pub const POLICY_DATA_KEY: &str = "data";
12pub const POLICY_STORAGE_ID: &str = "saved_networks";
13
14pub type StashedSsid = Vec<u8>;
15
16#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
19pub struct PersistentData {
20 pub credential: Credential,
21 pub has_ever_connected: bool,
22}
23
24#[derive(Clone, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
27pub struct NetworkIdentifier {
28 pub ssid: StashedSsid,
29 pub security_type: SecurityType,
30}
31
32#[derive(Clone, Copy, Debug, Deserialize, Eq, Hash, PartialEq, Serialize)]
34pub enum SecurityType {
35 None,
36 Wep,
37 Wpa,
38 Wpa2,
39 Wpa3,
40}
41
42#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
44pub enum Credential {
45 None,
46 Password(Vec<u8>),
47 Psk(Vec<u8>),
48}
49
50#[derive(Serialize, Deserialize)]
53#[serde(untagged)]
54pub enum FileContent {
55 Version(u8),
56 Networks(Vec<PersistentStorageData>),
57}
58
59#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
62pub struct PersistentStorageData {
63 pub ssid: StashedSsid,
64 pub security_type: SecurityType,
65 pub credential: Credential,
66 #[serde(default = "has_ever_connected_default")]
67 pub has_ever_connected: bool,
68}
69
70fn has_ever_connected_default() -> bool {
73 false
74}
75
76impl PersistentStorageData {
77 pub fn new_from_legacy_data(
79 id: NetworkIdentifier,
80 data: PersistentData,
81 ) -> PersistentStorageData {
82 PersistentStorageData {
83 ssid: id.ssid.clone(),
84 security_type: id.security_type,
85 credential: data.credential,
86 has_ever_connected: data.has_ever_connected,
87 }
88 }
89}