2026-07-25 12:39:32 +02:00
|
|
|
extension Network {
|
2026-09-18 12:45:39 +02:00
|
|
|
/// The device's wifi status. Wraps `WifiStatus`.
|
2026-07-25 12:39:32 +02:00
|
|
|
public enum WifiStatus: UInt32, Sendable {
|
|
|
|
|
case notConnected = 0
|
|
|
|
|
case connected = 1
|
2026-09-18 12:45:39 +02:00
|
|
|
/// A connection was attempted but no configured access point was available.
|
2026-07-25 12:39:32 +02:00
|
|
|
case notAvailable = 2
|
|
|
|
|
}
|
|
|
|
|
}
|