Bugfixes, updates

This commit is contained in:
adamdunkels 2007-05-15 08:09:21 +00:00
parent a9e8e9f4fe
commit 940da856de
27 changed files with 557 additions and 288 deletions

View file

@ -47,7 +47,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: tree.h,v 1.6 2007/03/31 18:31:29 adamdunkels Exp $
* $Id: tree.h,v 1.7 2007/05/15 08:09:21 adamdunkels Exp $
*/
/**
@ -60,7 +60,7 @@
#ifndef __TREE_H__
#define __TREE_H__
#include "net/rime/uibc.h"
#include "net/rime/ipolite.h"
#include "net/rime/ruc.h"
struct tree_callbacks {
@ -69,12 +69,13 @@ struct tree_callbacks {
};
struct tree_conn {
struct uibc_conn uibc_conn;
struct ipolite_conn ipolite_conn;
struct ruc_conn ruc_conn;
const struct tree_callbacks *cb;
struct ctimer t;
u8_t forwarding;
u8_t hops_from_sink;
u8_t seqno;
const struct tree_callbacks *cb;
};
void tree_open(struct tree_conn *c, u16_t channels,