2013-08-05 16:10:54 +02:00
|
|
|
/*
|
|
|
|
* 6LoWPAN - Wraps all API types, constants and functions of 6LoWPAN concerning
|
|
|
|
* Layers under 3.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 INRIA.
|
|
|
|
*
|
|
|
|
* This file subject to the terms and conditions of the GNU Lesser General
|
|
|
|
* Public License. See the file LICENSE in the top level directory for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* @ingroup sixlowpan
|
|
|
|
* @{
|
|
|
|
* @file sixlowpan.h
|
|
|
|
* @brief 6lowpan link layer and lowpan functions
|
|
|
|
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
#ifndef SIXLOWPAN_H
|
|
|
|
#define SIXLOWPAN_H
|
|
|
|
|
|
|
|
#include "sixlowpan/error.h"
|
|
|
|
#include "sixlowpan/types.h"
|
|
|
|
#include "sixlowpan/borderrouter.h"
|
|
|
|
#include "sixlowpan/lowpan.h"
|
|
|
|
#include "sixlowpan/mac.h"
|
|
|
|
|
|
|
|
#include "../border.h" /* TODO: remove if not needed anymore */
|
|
|
|
#include "../lowpan.h" /* TODO: remove if not needed anymore */
|
|
|
|
#include "../mac.h" /* TODO: remove if not needed anymore */
|
|
|
|
|
|
|
|
#endif /* SIXLOWPAN_H */
|