2002-07-11 02:10:23 +04:00
|
|
|
/* icmp_module.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ICMP_MODULE_H
|
|
|
|
#define ICMP_MODULE_H
|
|
|
|
|
2002-08-27 11:59:57 +04:00
|
|
|
#include "net_module.h"
|
2002-07-11 02:10:23 +04:00
|
|
|
|
2002-08-27 11:59:57 +04:00
|
|
|
#include <KernelExport.h>
|
2004-01-13 02:28:41 +03:00
|
|
|
|
|
|
|
#define NET_ICMP_MODULE_NAME NETWORK_MODULES_ROOT "protocols/icmp"
|
2002-07-11 02:10:23 +04:00
|
|
|
|
|
|
|
struct icmp_module_info {
|
|
|
|
struct kernel_net_module_info info;
|
2002-08-27 11:59:57 +04:00
|
|
|
|
2002-07-11 02:10:23 +04:00
|
|
|
void (*error)(struct mbuf *, int, int, n_long, struct ifnet *);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* ICMP_MODULE_H */
|