| 2355 | } |
| 2356 | |
| 2357 | void Engine::stopWifiSharingImpl() |
| 2358 | { |
| 2359 | bool bInitialState = vpnShareController_->isWifiSharingEnabled(); |
| 2360 | vpnShareController_->stopWifiSharing(); |
| 2361 | if (bInitialState == true) // emit signal if state changed |
| 2362 | { |
| 2363 | emit wifiSharingStateChanged(false, "", 0); |
| 2364 | } |
| 2365 | } |
| 2366 | |
| 2367 | void Engine::setSettingsMacAddressSpoofingImpl(const types::MacAddrSpoofing &macAddrSpoofing) |
| 2368 | { |
nothing calls this directly
no test coverage detected