haiku/headers/private/net/raw_module.h
beveloper 42415555d3 after many changes, the network stack can now be build
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1776 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-10-30 01:21:54 +00:00

22 lines
385 B
C

/* raw_module.h
*/
#ifndef RAW_MODULE_H
#define RAW_MODULE_H
#include "net_module.h"
#ifdef _KERNEL_MODE
#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 */