From 8ee68b43455b9ef0a90ac9d5cf3dfa123f480a26 Mon Sep 17 00:00:00 2001 From: Matthias Kovatsch Date: Thu, 12 Jan 2012 20:22:31 +0100 Subject: [PATCH] Added ext. header handling for UDP (RPL multihop still not functional). --- core/net/uip6.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/net/uip6.c b/core/net/uip6.c index b71844027..1ce04207f 100644 --- a/core/net/uip6.c +++ b/core/net/uip6.c @@ -1440,6 +1440,9 @@ uip_process(u8_t flag) #if UIP_UDP /* UDP input processing. */ udp_input: + + remove_ext_hdr(); + PRINTF("Receiving UDP packet\n"); UIP_STAT(++uip_stat.udp.recv);