| 1161 | } |
| 1162 | |
| 1163 | void Engine::continueWithPrivKeyPasswordImpl(const QString &password, bool bSave) |
| 1164 | { |
| 1165 | // if password is empty, then disconnect |
| 1166 | if (password.isEmpty()) { |
| 1167 | connectionManager_->clickDisconnect(); |
| 1168 | } else { |
| 1169 | if (bSave) { |
| 1170 | customOvpnAuthCredentialsStorage_->setPrivKeyPassword(connectionManager_->getCustomOvpnConfigFileName(), password); |
| 1171 | } |
| 1172 | connectionManager_->continueWithPrivKeyPassword(password, isNeedReconnectAfterRequestAuth_); |
| 1173 | } |
| 1174 | } |
| 1175 | |
| 1176 | void Engine::gotoCustomOvpnConfigModeImpl() |
| 1177 | { |
nothing calls this directly
no test coverage detected