12 lines
282 B
C
12 lines
282 B
C
#ifndef PING_HANDLERS_H
|
|
#define PING_HANDLERS_H
|
|
|
|
#include "icmp.h"
|
|
#include "internal/ping/ping_state.h"
|
|
|
|
void ping_handle_echo_reply(struct ping_state *state,
|
|
const icmp_reply_t *reply);
|
|
void ping_handle_icmp_error(struct ping_state *state,
|
|
const icmp_reply_t *reply);
|
|
|
|
#endif
|