Implement 'CNetChan::GetTimeConnected'

'CNetChan::GetConnectTime' has been removed in favor of 'CNetChan::GetTimeConnected'.
This commit is contained in:
Kawe Mazidjatari 2023-02-15 20:49:14 +01:00
parent fc1a773836
commit 06698bea33
2 changed files with 4 additions and 3 deletions

View File

@ -154,9 +154,10 @@ int CNetChan::GetSequenceNr(int flow) const
// Purpose: gets the netchannel connect time
// Output : double
//-----------------------------------------------------------------------------
double CNetChan::GetConnectTime(void) const
double CNetChan::GetTimeConnected(void) const
{
return this->connect_time;
double t = *g_pNetTime - connect_time;
return (t > 0.0) ? t : 0.0;
}
//-----------------------------------------------------------------------------

View File

@ -97,7 +97,7 @@ public:
int GetSequenceNr(int flow) const;
float GetTimeoutSeconds(void) const;
double GetConnectTime(void) const;
double GetTimeConnected(void) const;
int GetSocket(void) const;
bool IsOverflowed(void) const;