Another baby step in removing MAC knowledge from 6loWPAN.

This commit is contained in:
Gregory Nutt
2017-05-04 11:33:22 -06:00
parent 2d5fa7bc2e
commit 1cf891bbe1
12 changed files with 206 additions and 120 deletions
+1 -1
View File
@@ -211,7 +211,7 @@ static int lo_loopback(FAR struct net_driver_s *dev)
ninfo("Send frame %p to the network: Offset=%u Length=%u\n",
iob, iob->io_offset, iob->io_len);
ret = sixlowpan_input(&priv->lo_ieee, iob);
ret = sixlowpan_input(&priv->lo_ieee, iob, NULL);
/* Increment statistics */
+1 -1
View File
@@ -718,7 +718,7 @@ static void macnet_receive(FAR struct macnet_driver_s *priv)
/* Transfer the frame to the network logic */
sixlowpan_input(&priv->md_dev, iob);
sixlowpan_input(&priv->md_dev, iob, NULL);
}
/****************************************************************************