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

19 lines
298 B
C
Raw Normal View History

/* raw_module.h
*/
#ifndef RAW_MODULE_H
#define RAW_MODULE_H
#include "net_module.h"
#include <KernelExport.h>
2002-11-12 21:03:25 +00:00
#define NET_RAW_MODULE_NAME "network/protocols/raw"
struct raw_module_info {
struct kernel_net_module_info info;
2002-11-12 21:03:25 +00:00
void (*input)(struct mbuf *, int);
};
#endif /* RAW_MODULE_H */