summaryrefslogtreecommitdiffstats
path: root/libs/enet/peer.c
diff options
context:
space:
mode:
Diffstat (limited to 'libs/enet/peer.c')
-rw-r--r--libs/enet/peer.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/enet/peer.c b/libs/enet/peer.c
index d778ce1..e1c117f 100644
--- a/libs/enet/peer.c
+++ b/libs/enet/peer.c
@@ -108,6 +108,8 @@ enet_peer_send (ENetPeer * peer, enet_uint8 channelID, ENetPacket * packet)
return -1;
fragmentLength = peer -> mtu - sizeof (ENetProtocolHeader) - sizeof (ENetProtocolSendFragment);
+ if (peer -> host -> checksum != NULL)
+ fragmentLength -= sizeof(enet_uint32);
if (packet -> dataLength > fragmentLength)
{