Added a new type for all addresses in Rime: rimeaddr_t. This is an abstract type that currently is defined as a 16-bit quantity but that most likely will be redefined in the future

This commit is contained in:
adamdunkels 2007-03-15 19:43:07 +00:00
parent 2b119b054e
commit ab0d556353
19 changed files with 216 additions and 92 deletions

View file

@ -28,7 +28,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: sibc.h,v 1.2 2007/03/15 10:01:05 adamdunkels Exp $
* $Id: sibc.h,v 1.3 2007/03/15 19:43:07 adamdunkels Exp $
*/
/**
@ -48,7 +48,7 @@
struct sibc_conn;
struct sibc_callbacks {
void (* recv)(struct sibc_conn *c, node_id_t from);
void (* recv)(struct sibc_conn *c, rimeaddr_t *from);
void (* sent)(struct sibc_conn *c);
};