View Source VintageNetWiFi.AccessPoint (vintage_net_wifi v0.10.8)
Information about a WiFi access point
:bssid
- a unique address for the access point:flags
- a list of flags describing properties on the access point:frequency
- the access point's frequency in MHz:signal_dbm
- the signal strength in dBm:ssid
- the access point's name
Link to this section Summary
Functions
Create an AccessPoint when only the BSSID is known
Create a new AccessPoint with all of the information
Link to this section Types
Specs
band() :: :wifi_2_4_ghz | :wifi_5_ghz | :unknown
Specs
flag() :: :wpa2_psk_ccmp | :wpa2_eap_ccmp | :wpa2_eap_ccmp_tkip | :wpa2_psk_ccmp_tkip | :wpa2_psk_sae_ccmp | :wpa2_sae_ccmp | :wpa2_ccmp | :wpa_psk_ccmp | :wpa_psk_ccmp_tkip | :wpa_eap_ccmp | :wpa_eap_ccmp_tkip | :wep | :ibss | :mesh | :ess | :p2p | :wps | :rsn_ccmp
Specs
t() :: %VintageNetWiFi.AccessPoint{ band: band(), bssid: String.t(), channel: non_neg_integer(), flags: [flag()], frequency: non_neg_integer(), signal_dbm: integer(), signal_percent: 0..100, ssid: String.t() }
Link to this section Functions
Specs
Create an AccessPoint when only the BSSID is known
Specs
Create a new AccessPoint with all of the information