Bugfix: forwarding functions now have access to its packet headers. Added last hop to the arguments to the reception function

This commit is contained in:
adamdunkels 2008-02-05 20:17:43 +00:00
parent 33bcc24019
commit 3d6c1c966b
2 changed files with 20 additions and 9 deletions

View file

@ -48,7 +48,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: mh.h,v 1.4 2008/01/08 07:55:56 adamdunkels Exp $
* $Id: mh.h,v 1.5 2008/02/05 20:17:43 adamdunkels Exp $
*/
/**
@ -67,7 +67,10 @@
struct mh_conn;
struct mh_callbacks {
void (* recv)(struct mh_conn *ptr, rimeaddr_t *sender, u8_t hops);
void (* recv)(struct mh_conn *ptr,
rimeaddr_t *sender,
rimeaddr_t *prevhop,
u8_t hops);
rimeaddr_t *(* forward)(struct mh_conn *ptr,
rimeaddr_t *originator,
rimeaddr_t *dest,