Fix non-blocking TCP connect for remote servers and persist login info between sessions

This commit is contained in:
Kelsi 2026-02-05 12:25:00 -08:00
parent a52e28191e
commit bc9c7f09b1
3 changed files with 106 additions and 0 deletions

View file

@ -70,6 +70,14 @@ private:
* Update status message
*/
void setStatus(const std::string& message, bool isError = false);
/**
* Persist/restore login fields
*/
void saveLoginInfo();
void loadLoginInfo();
static std::string getConfigPath();
bool loginInfoLoaded = false;
};
}} // namespace wowee::ui