From 9be1a65211d195be6ad6cc2bd9f5d7594228d345 Mon Sep 17 00:00:00 2001 From: adamdunkels Date: Tue, 16 Mar 2010 18:11:58 +0000 Subject: [PATCH] Don't set the RELIABLE flag on incoming packets with the ack requested flag set, since it is set on most packets even if they aren't reliable --- core/net/mac/framer-802154.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/net/mac/framer-802154.c b/core/net/mac/framer-802154.c index 59f61994a..be5b23a5f 100644 --- a/core/net/mac/framer-802154.c +++ b/core/net/mac/framer-802154.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: framer-802154.c,v 1.6 2010/03/12 14:49:21 nifi Exp $ + * $Id: framer-802154.c,v 1.7 2010/03/16 18:11:58 adamdunkels Exp $ */ /** @@ -184,7 +184,7 @@ parse(void) } } packetbuf_set_addr(PACKETBUF_ADDR_SENDER, (rimeaddr_t *)&frame.src_addr); - packetbuf_set_attr(PACKETBUF_ATTR_RELIABLE, frame.fcf.ack_required); + /* packetbuf_set_attr(PACKETBUF_ATTR_RELIABLE, frame.fcf.ack_required);*/ packetbuf_set_attr(PACKETBUF_ATTR_PACKET_ID, frame.seq); PRINTF("15.4-IN: %2X", frame.fcf.frame_type);