2015-02-11 11:46:48 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup net_ng_ipv6 IPv6
|
|
|
|
* @ingroup net
|
|
|
|
* @brief New IPv6 implementation
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Definitions for IPv6
|
|
|
|
*
|
|
|
|
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef NG_IPV6_H_
|
|
|
|
#define NG_IPV6_H_
|
|
|
|
|
|
|
|
#include "net/ng_ipv6/addr.h"
|
2015-03-28 14:05:17 +01:00
|
|
|
#include "net/ng_ipv6/hdr.h"
|
2015-02-11 14:10:34 +01:00
|
|
|
#include "net/ng_ipv6/netif.h"
|
2015-02-11 11:46:48 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* NG_IPV6_H_ */
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|