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)
|
2018-04-10 15:38:05 +02:00
|
|
|
* @see [RFC 8200](http://tools.ietf.org/html/rfc8200) et al.
|
2015-08-10 00:26:36 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
*
|
2018-04-10 15:38:05 +02:00
|
|
|
* @see [RFC 8200, section 5](https://tools.ietf.org/html/rfc8200#section-5)
|
2015-08-20 15:09:45 +02:00
|
|
|
*/
|
|
|
|
#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
|
|
|
/** @} */
|