mirror of
https://review.haiku-os.org/haiku
synced 2025-01-20 05:21:28 +01:00
17 lines
306 B
C
17 lines
306 B
C
|
/* icmp_module.h
|
||
|
*/
|
||
|
|
||
|
#ifndef ICMP_MODULE_H
|
||
|
#define ICMP_MODULE_H
|
||
|
|
||
|
#include <net/net_module.h>
|
||
|
|
||
|
#define ICMP_MODULE_PATH "network/protocol/icmp"
|
||
|
|
||
|
struct icmp_module_info {
|
||
|
struct kernel_net_module_info info;
|
||
|
void (*error)(struct mbuf *, int, int, n_long, struct ifnet *);
|
||
|
};
|
||
|
|
||
|
#endif /* ICMP_MODULE_H */
|