1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

ng_icmpv6: use doxygen todo

This commit is contained in:
Cenk Gündoğan 2015-07-31 21:57:20 +02:00
parent 0d73cd301d
commit ee133344bd
2 changed files with 4 additions and 4 deletions

View File

@ -20,6 +20,8 @@
* @brief Definitions for ICMPv6
*
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*
* @todo build error messages
*/
#ifndef NG_ICMPV6_H_
@ -77,8 +79,6 @@ void ng_icmpv6_demux(kernel_pid_t iface, ng_pktsnip_t *pkt);
*/
ng_pktsnip_t *ng_icmpv6_build(ng_pktsnip_t *next, uint8_t type, uint8_t code, size_t size);
/* TODO: build error messages */
/**
* @brief Calculates the checksum for an ICMPv6 packet.
*

View File

@ -16,6 +16,8 @@
* @brief ICMPv6 error message definitions
*
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*
* @todo implement build and handle functions
*/
#ifndef NG_ICMPV6_ERROR_H_
#define NG_ICMPV6_ERROR_H_
@ -146,8 +148,6 @@ typedef struct __attribute__((packed)) {
network_uint32_t ptr; /**< pointer */
} ng_icmpv6_error_param_prob_t;
/* TODO: implement build and handle functions */
#ifdef __cplusplus
}
#endif