2002-07-11 02:10:23 +04:00
|
|
|
/* raw_module.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RAW_MODULE_H
|
|
|
|
#define RAW_MODULE_H
|
|
|
|
|
|
|
|
#include "net_module.h"
|
|
|
|
|
2002-10-30 04:21:54 +03:00
|
|
|
#ifdef _KERNEL_MODE
|
2002-07-11 02:10:23 +04:00
|
|
|
#include <KernelExport.h>
|
|
|
|
#define RAW_MODULE_PATH "network/protocol/raw"
|
|
|
|
#else
|
|
|
|
#define RAW_MODULE_PATH "modules/protocols/raw"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct raw_module_info {
|
|
|
|
struct kernel_net_module_info info;
|
|
|
|
void (*input)(struct mbuf *, int);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* RAW_MODULE_H */
|