Contiki 2.5
dispatching.h
Go to the documentation of this file.
1 /**
2  * \addtogroup bprocess
3  * @{
4  */
5 
6 /**
7  * \file
8  * \brief Bundle dispatching module
9  * \author Georg von Zengen <vonzeng@ibr.cs.tu-bs.de>
10  */
11 
12 #ifndef DISPATCHING_H
13 #define DISPATCHING_H
14 
15 #include "contiki.h"
16 #include "mmem.h"
17 
18 /**
19 * \brief Handles Admin Records, custody bundles and regular bundles
20 *
21 * \param bundlemem Pointer to MMEM structure
22 * \returns <= 0 on error >0 on success
23 */
24 int dispatching_dispatch_bundle(struct mmem * bundlemem);
25 
26 #endif
27 
28 /** @} */
29 /** @} */