| 130 | } |
| 131 | |
| 132 | void WifiHotspot::set_enabled_async(bool enable) { |
| 133 | if (m_is_enabled == enable) return; |
| 134 | m_is_enabled = enable; |
| 135 | if (enable) { |
| 136 | start_async(); |
| 137 | } else { |
| 138 | stop_async(); |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | bool WifiHotspot::get_use_5g_channel( |
| 143 | const WiFiCard& wifiCard, |
no outgoing calls
no test coverage detected