2013-11-28 13:25:33 +01:00
|
|
|
/*
|
2013-08-05 16:10:54 +02:00
|
|
|
* Copyright (C) 2013 INRIA.
|
|
|
|
*
|
2013-11-22 20:47:05 +01:00
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
2013-08-05 16:10:54 +02:00
|
|
|
* Public License. See the file LICENSE in the top level directory for more
|
|
|
|
* details.
|
2013-08-08 14:44:28 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-11-28 13:25:33 +01:00
|
|
|
* @defgroup net_sixlowpan 6LoWPAN
|
|
|
|
* @ingroup net
|
|
|
|
* @brief 6LoWPAN module implements (parts of) the 6LoWPAN adaption layer
|
|
|
|
* for IPv6 over Low Power Wireless Personal Area Networks
|
|
|
|
* (6LoWPANs)
|
|
|
|
*
|
2013-08-08 14:44:28 +02:00
|
|
|
* @see <a href="http://tools.ietf.org/html/rfc4919">
|
|
|
|
* RFC 4919 - IPv6 over Low-Power Wireless Personal Area
|
|
|
|
* Networks (6LoWPANs): Overview, Assumptions, Problem
|
|
|
|
* Statement, and Goals
|
|
|
|
* </a>
|
|
|
|
* @see <a href="http://tools.ietf.org/html/rfc4944">
|
|
|
|
* RFC 4944 - Transmission of IPv6 Packets over
|
|
|
|
* IEEE 802.15.4 Networks
|
|
|
|
* </a>
|
|
|
|
* @see <a href="http://tools.ietf.org/html/rfc6282">
|
|
|
|
* RFC 6282 - Compression Format for IPv6 Datagrams over
|
|
|
|
* IEEE 802.15.4-Based Networks
|
|
|
|
* </a>
|
|
|
|
* @see <a href="http://tools.ietf.org/html/rfc6775">
|
|
|
|
* RFC 6775 - Neighbor Discovery Optimization for IPv6
|
|
|
|
* over Low-Power Wireless Personal Area Networks
|
|
|
|
* (6LoWPANs)
|
|
|
|
* </a>
|
2013-11-28 13:25:33 +01:00
|
|
|
*
|
2014-04-16 12:09:49 +02:00
|
|
|
*
|
|
|
|
* @{
|
2013-11-28 13:25:33 +01:00
|
|
|
* @file sixlowpan.h
|
|
|
|
* @brief 6lowpan link layer and lowpan functions
|
|
|
|
*
|
|
|
|
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
|
2013-08-05 16:10:54 +02:00
|
|
|
*/
|
|
|
|
#ifndef SIXLOWPAN_H
|
|
|
|
#define SIXLOWPAN_H
|
|
|
|
|
|
|
|
#include "sixlowpan/error.h"
|
|
|
|
#include "sixlowpan/types.h"
|
|
|
|
#include "sixlowpan/lowpan.h"
|
|
|
|
#include "sixlowpan/mac.h"
|
|
|
|
|
|
|
|
#endif /* SIXLOWPAN_H */
|
2014-04-16 12:09:49 +02:00
|
|
|
/** @} */
|