Merge branch 'master' into configfilewriteable

This commit is contained in:
Lukas-Heiligenbrunner
2020-05-21 11:28:33 +02:00
committed by GitHub
3 changed files with 123 additions and 63 deletions

View File

@ -54,14 +54,15 @@ IPRefresher::IPRefresher(bool loop) {
if (loop) {
Logger::message("startup of service");
Logger::message("Version: " + Version::VERSION);
if (Config::readConfig()) {
while (true) {
Logger::message("starting check");
while (true) {
Logger::message("starting check");
if (Config::readConfig()) {
checkIPAdress(false);
std::this_thread::sleep_for(std::chrono::milliseconds(300000));
} else {
std::cout << "incorrect credentials!" << std::endl;
}
} else {
std::cout << "incorrect credentials!" << std::endl;
std::this_thread::sleep_for(std::chrono::milliseconds(300000));
}
}
}