diff options
author | Lee Salzman <[email protected]> | 2023-02-05 00:55:34 -0500 |
---|---|---|
committer | Lee Salzman <[email protected]> | 2023-02-05 00:55:34 -0500 |
commit | be7cefa39cd23dfc5919b20a12d8e25a9f3a2419 (patch) | |
tree | 7c113bb1612a0751f1141e87d8f35f8c023e0eca /include | |
parent | 9dde91d0035e83498847fe79b003b6764eb02343 (diff) | |
download | enet-be7cefa39cd23dfc5919b20a12d8e25a9f3a2419.tar.gz enet-be7cefa39cd23dfc5919b20a12d8e25a9f3a2419.zip |
avoid explicitly storing roundTripTimeoutLimit
Diffstat (limited to 'include')
-rw-r--r-- | include/enet/enet.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/enet/enet.h b/include/enet/enet.h index 8bf3640..be59c10 100644 --- a/include/enet/enet.h +++ b/include/enet/enet.h @@ -170,11 +170,10 @@ typedef struct _ENetOutgoingCommand enet_uint16 unreliableSequenceNumber; enet_uint32 sentTime; enet_uint32 roundTripTimeout; - enet_uint32 roundTripTimeoutLimit; + enet_uint32 queueTime; enet_uint32 fragmentOffset; enet_uint16 fragmentLength; enet_uint16 sendAttempts; - enet_uint32 queueTime; ENetProtocol command; ENetPacket * packet; } ENetOutgoingCommand; |