From 28ddccef19efd3c9e56a8073252a13badf032085 Mon Sep 17 00:00:00 2001 From: fros4943 Date: Mon, 22 Oct 2007 13:08:13 +0000 Subject: [PATCH] added missing function declarations --- platform/cooja/net/radio-uip-uaodv.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/platform/cooja/net/radio-uip-uaodv.c b/platform/cooja/net/radio-uip-uaodv.c index d4ffa5f70..4030c8a19 100644 --- a/platform/cooja/net/radio-uip-uaodv.c +++ b/platform/cooja/net/radio-uip-uaodv.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * @(#)$Id: radio-uip-uaodv.c,v 1.5 2007/07/26 13:22:01 fros4943 Exp $ + * @(#)$Id: radio-uip-uaodv.c,v 1.6 2007/10/22 13:08:13 fros4943 Exp $ */ #include "radio-uip-uaodv.h" @@ -94,7 +94,14 @@ PROCESS(radio_uip_process, "radio uIP uAODV process"); static const struct radio_driver *radio; + + /*---------------------------------------------------------------------------*/ +static void receiver(const struct radio_driver *d); +u8_t radio_uip_uaodv_send(void); +void radio_uip_uaodv_init(const struct radio_driver *d); +int radio_uip_handle_ack(u8_t *buf, int len); +u16_t radio_uip_calc_crc(u8_t *buf, int len); int radio_uip_buffer_outgoing_packet(u8_t *buf, int len, uip_ipaddr_t *dest, int max_sends); int radio_uip_is_ack(u8_t *buf, int len); int radio_uip_uaodv_add_header(u8_t *buf, int len, uip_ipaddr_t *addr);