2015-04-01 17:29:07 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-08-17 15:41:29 +02:00
|
|
|
* @defgroup net_gnrc_icmpv6_error ICMPv6 error messages
|
|
|
|
* @ingroup net_gnrc_icmpv6
|
2015-04-01 17:29:07 +02:00
|
|
|
* @brief ICMPv6 error message handling and creation
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief ICMPv6 error message definitions
|
|
|
|
*
|
|
|
|
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
2015-07-31 21:57:20 +02:00
|
|
|
*
|
|
|
|
* @todo implement build and handle functions
|
2015-04-01 17:29:07 +02:00
|
|
|
*/
|
2015-08-17 15:41:29 +02:00
|
|
|
#ifndef GNRC_ICMPV6_ERROR_H_
|
|
|
|
#define GNRC_ICMPV6_ERROR_H_
|
2015-04-01 17:29:07 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-08-17 15:41:29 +02:00
|
|
|
#endif /* GNRC_ICMPV6_ERROR_H_ */
|
2015-04-01 17:29:07 +02:00
|
|
|
/** @} */
|