mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Implement 'CNetChan::GetTimeConnected'
'CNetChan::GetConnectTime' has been removed in favor of 'CNetChan::GetTimeConnected'.
This commit is contained in:
parent
fc1a773836
commit
06698bea33
@ -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;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user