2015-08-10 00:26:36 +02: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_ipv6 IPv6
|
|
|
|
* @ingroup net
|
|
|
|
* @brief Provides types and helper functions related to Internet Protocol
|
|
|
|
* version 6 (IPv6)
|
|
|
|
* @see <a href="http://tools.ietf.org/html/rfc2460">
|
|
|
|
* RFC 2460
|
|
|
|
* </a> et al.
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief IPv6 include gathering header.
|
|
|
|
*
|
|
|
|
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
|
|
*/
|
2017-05-23 18:19:52 +02:00
|
|
|
#ifndef NET_IPV6_H
|
|
|
|
#define NET_IPV6_H
|
2015-08-10 00:26:36 +02:00
|
|
|
|
2016-03-23 22:39:46 +01:00
|
|
|
#include "net/ipv6/addr.h"
|
|
|
|
#include "net/ipv6/ext.h"
|
|
|
|
#include "net/ipv6/hdr.h"
|
2015-08-10 00:26:36 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-08-20 15:09:45 +02:00
|
|
|
/**
|
|
|
|
* @brief minimum **M**aximum **T**ransition **U**nit
|
|
|
|
*
|
|
|
|
* @see <a href="https://tools.ietf.org/html/rfc4944#section-5.3">
|
|
|
|
* RFC 2460, section 5.3
|
|
|
|
* </a>
|
|
|
|
*/
|
|
|
|
#define IPV6_MIN_MTU (1280)
|
|
|
|
|
2015-08-10 00:26:36 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2017-05-23 18:19:52 +02:00
|
|
|
#endif /* NET_IPV6_H */
|
2015-08-10 00:26:36 +02:00
|
|
|
/** @} */
|