Skip to content
Snippets Groups Projects
Commit c83ba9e8 authored by Peter Kietzmann's avatar Peter Kietzmann
Browse files

Merge pull request #3663 from authmillenon/gnrc_sixlowpan/fix/too-early-comp

gnrc_sixlowpan: compare with actual packet size for fragmentation
parents 3d065310 6dc125e0
No related branches found
No related tags found
No related merge requests found
......@@ -257,7 +257,7 @@ static void _send(gnrc_pktsnip_t *pkt)
/* IP should not send anything here if it is not a 6LoWPAN interface,
* so we don't need to check for NULL pointers */
if (datagram_size <= iface->max_frag_size) {
if (gnrc_pkt_len(pkt2->next) <= iface->max_frag_size) {
DEBUG("6lo: Send SND command for %p to %" PRIu16 "\n",
(void *)pkt2, hdr->if_pid);
gnrc_netapi_send(hdr->if_pid, pkt2);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment