mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
35 lines
750 B
C
35 lines
750 B
C
/*
|
|
* 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_gnrc_icmpv6_error ICMPv6 error messages
|
|
* @ingroup net_gnrc_icmpv6
|
|
* @brief ICMPv6 error message handling and creation
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief ICMPv6 error message definitions
|
|
*
|
|
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
*
|
|
* @todo implement build and handle functions
|
|
*/
|
|
#ifndef GNRC_ICMPV6_ERROR_H_
|
|
#define GNRC_ICMPV6_ERROR_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* GNRC_ICMPV6_ERROR_H_ */
|
|
/** @} */
|