2014-04-16 12:09:49 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 INRIA.
|
2013-08-05 16:10:54 +02:00
|
|
|
*
|
2014-08-23 15:43:13 +02:00
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
2014-04-16 12:09:49 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup net_sixlowpan
|
2013-08-05 16:10:54 +02:00
|
|
|
* @{
|
2015-05-22 07:34:41 +02:00
|
|
|
* @file
|
2013-08-05 16:10:54 +02:00
|
|
|
* @brief IPv6 and ICMP functions
|
2014-04-16 12:09:49 +02:00
|
|
|
*
|
|
|
|
* Wraps all API types, constants and functions of
|
|
|
|
* 6LoWPAN in layer 3.
|
|
|
|
*
|
2015-02-08 18:51:25 +01:00
|
|
|
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
2013-08-05 16:10:54 +02:00
|
|
|
*/
|
|
|
|
#ifndef IPV6_H
|
|
|
|
#define IPV6_H
|
|
|
|
|
|
|
|
#include "sixlowpan/error.h"
|
|
|
|
#include "sixlowpan/types.h"
|
|
|
|
#include "sixlowpan/ip.h"
|
|
|
|
#include "sixlowpan/icmp.h"
|
|
|
|
#include "sixlowpan/ndp.h"
|
|
|
|
|
2013-12-15 16:03:33 +01:00
|
|
|
#include "../network_layer/sixlowpan/icmp.h" /* TODO: remove if not needed anymore */
|
2013-08-05 16:10:54 +02:00
|
|
|
|
2014-10-10 11:51:11 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-04-16 12:09:49 +02:00
|
|
|
#endif /* IPV6_H */
|
2013-08-08 14:45:03 +02:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|