TraversalClient: Use u32 instead of enet_uint32

Lessens the dependence on the enet library (and we really don't need to rely on a third-party library for a 32-bit integer type)
This commit is contained in:
Lioncash 2018-04-16 16:28:48 -04:00
parent f1e92a1eae
commit c23a998f9d
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7
2 changed files with 4 additions and 4 deletions

View file

@ -243,7 +243,7 @@ void TraversalClient::ResendPacket(OutgoingTraversalPacketInfo* info)
void TraversalClient::HandleResends()
{
enet_uint32 now = enet_time_get();
const u32 now = enet_time_get();
for (auto& tpi : m_OutgoingTraversalPackets)
{
if (now - tpi.sendTime >= (u32)(300 * tpi.tries))
@ -265,7 +265,7 @@ void TraversalClient::HandleResends()
void TraversalClient::HandlePing()
{
enet_uint32 now = enet_time_get();
const u32 now = enet_time_get();
if (m_State == Connected && now - m_PingTime >= 500)
{
TraversalPacket ping = {};