Home
last modified time | relevance | path

Searched refs:CCTimeType (Results 1 – 6 of 6) sorted by relevance

/dports/devel/raknet/raknet-3.9.2_10,1/Source/
H A DCCRakNetUDT.h18 typedef RakNetTimeUS CCTimeType; typedef
20 typedef RakNetTimeMS CCTimeType; typedef
96 bool ShouldSendACKs(CCTimeType curTime, CCTimeType estimatedTimeToNextTick);
120 void OnResend(CCTimeType curTime);
202 CCTimeType nextSYNUpdate;
246 CCTimeType lastPacketArrivalTime;
254 CCTimeType lastTransmitOfBAndAS;
292 CCTimeType lastUpdateWindowSizeAndAck;
305 CCTimeType oldestUnsentAck;
384 CCTimeType lastRttOnIncreaseSendRate;
[all …]
H A DCCRakNetSlidingWindow.h58 typedef RakNetTimeUS CCTimeType; typedef
60 typedef RakNetTimeMS CCTimeType; typedef
83 …int GetRetransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint32_t unacknow…
84 …int GetTransmissionBandwidth(CCTimeType curTime, CCTimeType timeSinceLastTick, uint32_t unacknowle…
90 bool ShouldSendACKs(CCTimeType curTime, CCTimeType estimatedTimeToNextTick);
102 void OnSendBytes(CCTimeType curTime, uint32_t numBytes);
114 void OnResend(CCTimeType curTime);
132 void OnSendAck(CCTimeType curTime, uint32_t numBytes);
144 CCTimeType GetRTOForRetransmission(void) const;
189 CCTimeType oldestUnsentAck;
[all …]
H A DCCRakNetSlidingWindow.cpp8 static const CCTimeType SYN=10;
10 static const CCTimeType SYN=10000;
77 bool CCRakNetSlidingWindow::ShouldSendACKs(CCTimeType curTime, CCTimeType estimatedTimeToNextTick) in ShouldSendACKs()
79 CCTimeType rto = GetSenderRTOForACK(); in ShouldSendACKs()
83 if (rto==(CCTimeType) UNSET_TIME_US) in ShouldSendACKs()
259 const CCTimeType maxThreshold=10000; in GetRTOForRetransmission()
260 const CCTimeType minThreshold=100; in GetRTOForRetransmission()
263 const CCTimeType minThreshold=100000; in GetRTOForRetransmission()
275 return (CCTimeType) RTT * 3; in GetRTOForRetransmission()
324 return (CCTimeType) UNSET_TIME_US; in GetSenderRTOForACK()
[all …]
H A DReliabilityLayer.h63 CCTimeType lastUpdateTime;
88 uint64_t GetBPS1(CCTimeType time);
103 CCTimeType time;
109 void ClearExpired1(CCTimeType time);
217 CCTimeType GetAckPing(void) const;
344 CCTimeType unreliableTimeout;
447 CCTimeType lastUpdateTime;
450 CCTimeType ackPing;
453 CCTimeType ackPingSum;
495 CCTimeType nextAckTimeToSend;
[all …]
H A DCCRakNetUDT.cpp24 static const CCTimeType SYN=10;
26 static const CCTimeType SYN=10000;
206 bool CCRakNetUDT::ShouldSendACKs(CCTimeType curTime, CCTimeType estimatedTimeToNextTick) in ShouldSendACKs()
208 CCTimeType rto = GetSenderRTOForACK(); in ShouldSendACKs()
211 if (rto==(CCTimeType) UNSET_TIME_US) in ShouldSendACKs()
356 return (CCTimeType) UNSET_TIME_US; in GetSenderRTOForACK()
364 const CCTimeType maxThreshold=10000; in GetRTOForRetransmission()
365 const CCTimeType minThreshold=100; in GetRTOForRetransmission()
367 const CCTimeType maxThreshold=1000000; in GetRTOForRetransmission()
368 const CCTimeType minThreshold=100000; in GetRTOForRetransmission()
[all …]
H A DReliabilityLayer.cpp98 CCTimeType sourceSystemTime;
414 ackPingSum=(CCTimeType)0; in InitializeVariables()
680 CCTimeType rtt = timeMSLow-dhf.sourceSystemTime; in HandleSocketReceiveFromConnectedPlayer()
688 rtt=(CCTimeType) congestionManager.GetRTT(); in HandleSocketReceiveFromConnectedPlayer()
1377 CCTimeType timeSinceLastTick = time - lastUpdateTime; in Update()
1425 timeToNextUnreliableCull=unreliableTimeout/(CCTimeType)2; in Update()
1722 const CCTimeType threshhold = 10000; in Update()
1724 const CCTimeType threshhold = 10000000; in Update()
2011 unreliableTimeout=(CCTimeType)timeoutMS*(CCTimeType)1000; in SetUnreliableTimeout()
3050 CCTimeType ReliabilityLayer::GetNextSendTime(void) const in GetNextSendTime()
[all …]