added missing function declarations
This commit is contained in:
parent
e57310c0b3
commit
28ddccef19
1 changed files with 8 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue