Files
haiku-beta6/headers/private/net/icmp_module.h
T

19 lines
334 B
C
Raw Normal View History

/* icmp_module.h
*/
#ifndef ICMP_MODULE_H
#define ICMP_MODULE_H
#include "net_module.h"
#include <KernelExport.h>
2002-11-12 21:03:25 +00:00
#define NET_ICMP_MODULE_NAME "network/protocols/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 */