2013-08-05 16:10:54 +02:00
|
|
|
#ifndef _SIXLOWPAN_ERROR_H
|
|
|
|
#define _SIXLOWPAN_ERROR_H
|
2011-06-23 01:48:40 +02:00
|
|
|
|
|
|
|
#define SUCCESS 0
|
|
|
|
#define SIXLOWERROR_ARRAYFULL 132 // array is full
|
|
|
|
#define SIXLOWERROR_NULLPTR 133 // null pointer error
|
|
|
|
#define SIXLOWERROR_VALUE 134 // illegal value
|
|
|
|
#define SIXLOWERROR_ADDRESS 135 // illegal address
|
|
|
|
#define SIXLOWERROR_DISPATCH 136 // lowpan dispatch unknown
|
|
|
|
#define SIXLOWERROR_FSTFRAG 137 // first lowpan fragment not received
|
|
|
|
#define SIXLOWERROR_INVFRAG 138 // invalid fragment received
|
|
|
|
#define SIXLOWERROR_SCI 139 // source context not found
|
|
|
|
#define SIXLOWERROR_DCI 140 // destination context not found
|
|
|
|
#define SIXLOWERROR_CSUM 141 // wrong checksum
|
|
|
|
|
2013-08-05 16:10:54 +02:00
|
|
|
#endif /* _SIXLOWPAN_ERROR_H*/
|