This commit is contained in:
SilicaAndPina 2021-06-27 15:32:09 +12:00
parent 6267910923
commit 7c987d8d35
8 changed files with 242 additions and 29 deletions

View file

@ -256,6 +256,7 @@ namespace HISP.Server
LoggedIn = true;
Database.SetIpAddress(id, RemoteIp);
Database.SetLoginCount(id, Database.GetLoginCount(id) + 1);
inactivityTimer = new Timer(new TimerCallback(keepAliveTimerTick), null, keepAliveInterval, keepAliveInterval);
}