diff options
author | Lee Salzman <[email protected]> | 2020-07-23 04:42:59 -0400 |
---|---|---|
committer | Lee Salzman <[email protected]> | 2020-07-23 04:42:59 -0400 |
commit | 47d2e192aa6a0294eaed69a95a7755c890759106 (patch) | |
tree | 6ecabbb88febc680677a1758b09243fc1095b0a2 /include | |
parent | 224f31101fc60939c02f6bbe8e8fc810a7db306b (diff) | |
download | enet-47d2e192aa6a0294eaed69a95a7755c890759106.tar.gz enet-47d2e192aa6a0294eaed69a95a7755c890759106.zip |
use unified outgoing command queue for reliable and unreliable commands
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 54d91b5..a736173 100644 --- a/include/enet/enet.h +++ b/include/enet/enet.h @@ -313,8 +313,7 @@ typedef struct _ENetPeer ENetList acknowledgements; ENetList sentReliableCommands; ENetList sentUnreliableCommands; - ENetList outgoingReliableCommands; - ENetList outgoingUnreliableCommands; + ENetList outgoingCommands; ENetList dispatchedCommands; enet_uint16 flags; enet_uint8 roundTripTimeRemainder; |