1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/net/include/ipv6.h

32 lines
732 B
C
Raw Normal View History

2013-08-08 14:45:03 +02:00
/**
* ipv6.h - Wraps all API types, constants and functions of
* 6LoWPAN in layer 3.
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.
*
* @ingroup sixlowpan
* @{
2013-08-08 14:45:03 +02:00
* @file
2013-08-05 16:10:54 +02:00
* @brief IPv6 and ICMP functions
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
*/
#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"
#include "../network_layer/sixlowpan/icmp.h" /* TODO: remove if not needed anymore */
2013-08-05 16:10:54 +02:00
2013-08-08 14:45:03 +02:00
/**
* @}
*/
2013-08-05 16:10:54 +02:00
#endif /* IPV6_H */