diff options
Diffstat (limited to 'libs/enet/peer.c')
-rw-r--r-- | libs/enet/peer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/enet/peer.c b/libs/enet/peer.c index d778ce1d..e1c117f8 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) { |