2015-03-07 21:46:57 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-08-17 15:41:29 +02:00
|
|
|
* @defgroup net_gnrc_ipv6_ext IPv6 extension headers.
|
|
|
|
* @ingroup net_gnrc_ipv6
|
2015-03-07 21:46:57 +01:00
|
|
|
* @brief Implementation of IPv6 extension headers
|
2018-04-10 15:38:05 +02:00
|
|
|
* @see [RFC 8200, section 4](https://tools.ietf.org/html/rfc8200#section-4)
|
2015-03-07 21:46:57 +01:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Definititions for IPv6 extension headers
|
|
|
|
*
|
|
|
|
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-05-23 18:19:52 +02:00
|
|
|
#ifndef NET_GNRC_IPV6_EXT_H
|
|
|
|
#define NET_GNRC_IPV6_EXT_H
|
2015-03-07 21:46:57 +01:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
2015-08-09 23:53:40 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
2015-03-07 21:46:57 +01:00
|
|
|
|
2015-08-17 15:41:29 +02:00
|
|
|
#include "net/gnrc/pkt.h"
|
2015-08-09 23:53:40 +02:00
|
|
|
#include "net/ipv6/ext.h"
|
2015-04-30 21:16:38 +02:00
|
|
|
|
2018-10-23 19:34:46 +02:00
|
|
|
#ifdef MODULE_GNRC_IPV6_EXT_RH
|
|
|
|
#include "net/gnrc/ipv6/ext/rh.h"
|
|
|
|
#endif
|
|
|
|
|
2015-03-07 21:46:57 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2018-10-24 00:03:13 +02:00
|
|
|
* @brief Demultiplex an extension header according to @p nh.
|
2015-03-07 21:46:57 +01:00
|
|
|
*
|
2018-10-24 00:03:13 +02:00
|
|
|
* @param[in] pkt A packet with the first snip pointing to the extension
|
|
|
|
* header to process.
|
|
|
|
* @param[in] nh Protocol number of @p pkt.
|
2016-01-20 11:25:58 +01:00
|
|
|
*
|
2018-10-24 00:03:13 +02:00
|
|
|
* @return The packet for further processing.
|
|
|
|
* @return NULL, on error or if packet was consumed (by e.g. forwarding via
|
|
|
|
* a routing header). @p pkt is released in case of error.
|
2015-03-07 21:46:57 +01:00
|
|
|
*/
|
2018-10-24 00:03:13 +02:00
|
|
|
gnrc_pktsnip_t *gnrc_ipv6_ext_demux(gnrc_pktsnip_t *pkt, unsigned nh);
|
2015-03-07 21:46:57 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Builds an extension header for sending.
|
|
|
|
*
|
|
|
|
* @param[in] ipv6 The IPv6 header. Can be NULL.
|
|
|
|
* @param[in] next The next header. Must be a successor to @p ipv6 if it is
|
|
|
|
* not NULL.
|
2015-08-07 15:08:53 +02:00
|
|
|
* @param[in] nh @ref net_protnum of the next header.
|
2015-03-07 21:46:57 +01:00
|
|
|
* @param[in] size Size of the extension header.
|
|
|
|
*
|
|
|
|
* @return The extension header on success.
|
|
|
|
* @return NULL, on error.
|
|
|
|
*/
|
2015-08-17 15:41:29 +02:00
|
|
|
gnrc_pktsnip_t *gnrc_ipv6_ext_build(gnrc_pktsnip_t *ipv6, gnrc_pktsnip_t *next,
|
|
|
|
uint8_t nh, size_t size);
|
2015-03-07 21:46:57 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-05-23 18:19:52 +02:00
|
|
|
#endif /* NET_GNRC_IPV6_EXT_H */
|
2015-03-07 21:46:57 +01:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|